From bc6345225f6eb7a51b73ce3a9225ba09136d9945 Mon Sep 17 00:00:00 2001 From: A Holt Date: Wed, 31 Oct 2018 04:40:58 -0400 Subject: [PATCH 1/3] Update main.yml --- roles/elgg/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/elgg/tasks/main.yml b/roles/elgg/tasks/main.yml index 75ab40fce..29b7e34c0 100644 --- a/roles/elgg/tasks/main.yml +++ b/roles/elgg/tasks/main.yml @@ -143,7 +143,7 @@ state: absent when: not elgg_enabled and is_redhat -- name: Restart Apache ({{ apache_service }}), to enable/disable http://box/elgg +- name: Restart Apache ({{ apache_service }}) to enable/disable http://box/elgg service: name: "{{ apache_service }}" state: restarted From 48633f2db5d1d83b19dd86b6874b2c932ead9cf8 Mon Sep 17 00:00:00 2001 From: A Holt Date: Wed, 31 Oct 2018 04:46:14 -0400 Subject: [PATCH 2/3] Update main.yml --- roles/nextcloud/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/nextcloud/tasks/main.yml b/roles/nextcloud/tasks/main.yml index 30e1b87bd..505c15d41 100644 --- a/roles/nextcloud/tasks/main.yml +++ b/roles/nextcloud/tasks/main.yml @@ -83,7 +83,7 @@ state: present when: is_redhat -- name: Unpack {{ nextcloud_src_file }} to permanent location /opt/nextcloud +- name: Unarchive {{ nextcloud_src_file }} to permanent location {{ nextcloud_prefix }} # e.g. unpack nextcloud_latest-14.tar.bz2 to /opt/nextcloud unarchive: src: "{{ downloads_dir }}/{{ nextcloud_src_file }}" dest: "{{ nextcloud_prefix }}" From 83502e84f024926cf3348859bb1cb240eac61160 Mon Sep 17 00:00:00 2001 From: A Holt Date: Wed, 31 Oct 2018 04:59:36 -0400 Subject: [PATCH 3/3] Update install.yml --- roles/awstats/tasks/install.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/roles/awstats/tasks/install.yml b/roles/awstats/tasks/install.yml index 355e81409..97ee62195 100644 --- a/roles/awstats/tasks/install.yml +++ b/roles/awstats/tasks/install.yml @@ -1,4 +1,4 @@ -- name: Install packages {awstats, pwauth, openssl} +- name: 'Install 3 packages: awstats, openssl, pwauth' package: name: - awstats @@ -8,7 +8,7 @@ tags: - download -- name: Install packages libapache2-mod-authnz-external and apache2-utils (debuntu) +- name: 'Install 2 packages: apache2-utils, libapache2-mod-authnz-external (debuntu)' package: name: - libapache2-mod-authnz-external @@ -22,7 +22,7 @@ command: a2enmod cgi when: is_debuntu -- name: Create directory for AWStats to use as intermediate summary storage +- name: 'Mandate {{ apache_user }}:{{ apache_user }} perm 0750 dirs: {{ awstats_data_dir }} (intermediate summary storage) & {{ apache_log_dir }}' # /library/awstats & /var/log/apache2 typically file: path: "{{ item }}" mode: 0750