diff --git a/roles/awstats/tasks/install.yml b/roles/awstats/tasks/install.yml index 4bac58f8b..2eda64135 100644 --- a/roles/awstats/tasks/install.yml +++ b/roles/awstats/tasks/install.yml @@ -1,21 +1,21 @@ # TO DO: # -# - Prepare for a possible future w/o Apache by verifying/refining below... -# - 5 'when: apache_installed is defined' -# - 1 'when: nginx_install' -# - 8 core stanzas w/o such 'when:' clauses +# Prepare for a possible future w/o Apache by verifying/refining below... +# - 5 'when: apache_installed is defined' (2021-05-21: COMMENT OUT THESE STANZAS SOON!?) +# - 1 'when: nginx_install' +# - 8 core stanzas w/o such 'when:' clauses - name: 'Install package: awstats' package: name: awstats state: present -- name: 'Install 3 packages: pwauth, apache2-utils, openssl' +- name: 'Install package: pwauth' package: name: - pwauth # Auto-installs apache2-bin and libapache2-mod-authnz-external - - apache2-utils # Possibly not nec, due to above? - - openssl # Does NGINX need this too? + #- apache2-utils # Unneeded? (In any case, already installed by Apache itself.) + #- openssl # Unneeded? (In any case, already installed by most every Linux distro.) state: present when: apache_installed is defined