You've already forked ansible-role-directadmin
17 lines
398 B
YAML
17 lines
398 B
YAML
|
|
---
|
||
|
|
- name: Ensure custom scripts directory exists
|
||
|
|
file:
|
||
|
|
path: /usr/local/directadmin/scripts/custom
|
||
|
|
state: directory
|
||
|
|
|
||
|
|
- name: Include user configuration
|
||
|
|
include_tasks: config/users.yml
|
||
|
|
|
||
|
|
- name: Include mail configuration
|
||
|
|
include_tasks: config/mail.yml
|
||
|
|
|
||
|
|
- name: Include DirectAdmin configuration
|
||
|
|
include_tasks: config/directadmin.yml
|
||
|
|
|
||
|
|
- name: Flush handlers
|
||
|
|
meta: flush_handlers
|