1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-13 11:42:08 +00:00
iiab/roles/awstats/tasks/install.yml

103 lines
3.2 KiB
YAML
Raw Normal View History

2018-10-31 08:59:36 +00:00
- name: 'Install 3 packages: awstats, openssl, pwauth'
package:
2018-10-28 18:15:53 +00:00
name:
- awstats
- pwauth
- openssl
state: present
2017-05-27 18:09:50 +00:00
tags:
- download
2018-10-31 08:59:36 +00:00
- name: 'Install 2 packages: apache2-utils, libapache2-mod-authnz-external (debuntu)'
package:
2018-10-28 18:15:53 +00:00
name:
- libapache2-mod-authnz-external
- apache2-utils
state: present
when: is_debuntu | bool
2017-05-27 18:09:50 +00:00
tags:
- download
- name: Enable cgi execution (debuntu)
2017-05-27 18:09:50 +00:00
command: a2enmod cgi
when: is_debuntu | bool
2017-05-27 18:09:50 +00:00
2018-10-31 08:59:36 +00:00
- 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
owner: "{{ apache_user }}"
group: "{{ apache_user }}"
state: directory
recurse: yes
force: yes
2017-05-27 18:09:50 +00:00
with_items:
- "{{ awstats_data_dir }}"
- "{{ apache_log_dir }}"
2019-10-15 17:42:04 +00:00
- /usr/lib/cgi-bin/awstats # create backward compatible path for awstats
2017-05-27 18:09:50 +00:00
2019-11-19 17:25:51 +00:00
- name: Install Apache's awstats.conf from template (debuntu)
template:
2019-10-15 17:42:04 +00:00
src: "{{ item.src }}"
dest: "{{ item.dest }}"
owner: root
group: root
mode: 0644
2019-10-15 17:42:04 +00:00
with_items:
2019-11-19 17:25:51 +00:00
# - { src: "awstats-nginx.conf", dest: "/etc/nginx/conf.d/" }
# - { src: "cgi-bin.php", dest: "/etc/nginx/" }
- { src: "apache-awstats.conf", dest: "/etc/{{ apache_config_dir }}/awstats.conf" }
2017-05-27 23:10:45 +00:00
when: awstats_enabled and is_debuntu
2017-05-27 18:09:50 +00:00
2018-10-28 18:15:53 +00:00
- name: Ensure logrotate doesn't make logs unreadable (debuntu)
template:
src: logrotate.d.apache2
dest: /etc/logrotate.d/apache2
when: is_debuntu | bool
2017-05-27 18:09:50 +00:00
2018-10-28 18:15:53 +00:00
- name: Check if package installed /etc/awstats/awstats.conf
stat:
path: /etc/awstats/awstats.conf
2017-05-27 18:09:50 +00:00
register: awstats
2018-10-28 18:15:53 +00:00
- name: If so, move it aside to /etc/awstats/awstats.conf.dist
2017-05-27 18:09:50 +00:00
command: mv /etc/awstats/awstats.conf /etc/awstats/awstats.conf.dist
when: awstats.stat.islnk is defined and not awstats.stat.islnk
2019-10-15 17:42:04 +00:00
- name: Create symlink for awstats.pl from cgi-bin/awstats/awstats.pl to ../ so that the old apache links to awstats will work after change to nginx
file:
2019-10-15 17:42:04 +00:00
src: /usr/lib/cgi-bin/awstats.pl
path: /usr/lib/cgi-bin/awstats/awstats.pl
state: link
2017-05-27 18:09:50 +00:00
2018-10-28 18:15:53 +00:00
- name: Install /etc/awstats/awstats.schoolserver.conf
template:
src: awstats.schoolserver.conf.j2
dest: /etc/awstats/awstats.schoolserver.conf
owner: root
group: root
mode: 0644
when: awstats_enabled | bool
2017-05-27 18:09:50 +00:00
2018-10-28 18:15:53 +00:00
- name: Create a symlink /etc/awstats/awstats.conf for access by IP address
file:
src: /etc/awstats/awstats.schoolserver.conf
2018-10-28 18:15:53 +00:00
path: /etc/awstats/awstats.conf
state: link
when: awstats_enabled | bool
2017-05-27 18:09:50 +00:00
2017-11-10 20:33:19 +00:00
- name: On first enabling of AWStats, summarize httpd logs up to now (OS's other than debuntu)
2017-05-27 18:09:50 +00:00
shell: /bin/perl /usr/share/awstats/wwwroot/cgi-bin/awstats.pl -config=schoolserver -update
2017-05-27 23:10:45 +00:00
when: awstats_enabled and not is_debuntu
2017-05-27 18:09:50 +00:00
2017-11-10 20:33:19 +00:00
- name: On first enabling of AWStats, summarize httpd logs up to now (debuntu)
2017-05-27 18:09:50 +00:00
shell: /usr/bin/perl /usr/lib/cgi-bin/awstats.pl -config=schoolserver -update
2017-05-27 23:10:45 +00:00
when: awstats_enabled and is_debuntu
2019-09-05 10:30:20 +00:00
- name: Add 'awstats_installed' variable values to {{ iiab_state_file }}
2019-09-09 17:14:13 +00:00
lineinfile:
dest: "{{ iiab_state_file }}"
2019-09-09 17:14:13 +00:00
regexp: '^awstats_installed'
2019-10-07 17:11:21 +00:00
line: 'awstats_installed: True'
2019-09-09 17:14:13 +00:00
state: present