1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-14 20:22:08 +00:00

AWStats: Further clarify Apache vs. NGINX package deps

This commit is contained in:
A Holt 2021-05-21 10:38:27 -04:00 committed by GitHub
parent d9e3f298ed
commit 5ca2179b97
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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