diff --git a/apache-site.yml b/apache-site.yml index 2d6c273..f46636c 100644 --- a/apache-site.yml +++ b/apache-site.yml @@ -1,12 +1,17 @@ --- +- import_playbook: playbooks/own/allow-releaseinfo-change.yml +- import_playbook: playbooks/own/locales.yml - import_playbook: debops/tzdata.yml - import_playbook: debops/pki.yml +- import_playbook: debops/yadm.yml +- import_playbook: debops/root_account.yml +- import_playbook: debops/sudo.yml +- import_playbook: debops/system_users.yml - import_playbook: debops/mariadb_server.yml - import_playbook: debops/mariadb-custom-db.yml - import_playbook: debops/php-wp.yml - import_playbook: debops/apache.yml -- import_playbook: debops/users.yml -- import_playbook: debops/sudo.yml +- import_playbook: playbooks/own/var-www-set-ownerships.yml # Import all other group playbooks in this file... diff --git a/debops/mariadb-custom-db.yml b/debops/mariadb-custom-db.yml index 4dbdade..8a5e736 100644 --- a/debops/mariadb-custom-db.yml +++ b/debops/mariadb-custom-db.yml @@ -17,7 +17,7 @@ vars_files: - ./../vars/databases.yml - - + roles: - role: secret diff --git a/nginx-site.yml b/nginx-site.yml index 7e97748..c76931c 100644 --- a/nginx-site.yml +++ b/nginx-site.yml @@ -8,6 +8,7 @@ - import_playbook: debops/redis.yml - import_playbook: debops/users.yml - import_playbook: debops/sudo.yml +- import_playbook: playbooks/own/var-www-set-ownerships.yml # Import all other group playbooks in this file... diff --git a/playbooks/own/var-www-set-ownerships.yml b/playbooks/own/var-www-set-ownerships.yml new file mode 100644 index 0000000..97e1364 --- /dev/null +++ b/playbooks/own/var-www-set-ownerships.yml @@ -0,0 +1,7 @@ +--- + +- name: Configure Locales + hosts: [ 'debian10' ] + tasks: + - name: Set ownerships to /var/www dir + shell: 'chown -R {{ lxc_host }}:{{ lxc_host }} /var/www'