Files
fedora-infra_ansible/roles/awstats/tasks/main.yml
Patrick Uiterwijk adcbf72f03 Packageize this, packageize that, packageize the world
Signed-off-by: Patrick Uiterwijk <puiterwijk@redhat.com>
2017-10-08 22:25:52 +00:00

30 lines
702 B
YAML

---
- name: install awstats package
package: state=present name=awstats
tags:
- packages
- awstats
- name: make the awstats directory
file: path=/var/www/html/awstats-reports state=directory
when: inventory_hostname.startswith('data-analysis')
tags:
- awstats
- name: awstats proxy merge script (log01)
copy: src=combineHttpLogs.sh dest=/usr/local/bin/ mode=0755
when: inventory_hostname.startswith('log')
tags:
- config
- awstats
- name: awstats daily cron job to merge old logs
copy: src=combineHttp.cron dest=/etc/cron.d/ mode=0644
when: inventory_hostname.startswith('log')
tags:
- cron
- awstats
#- name: set up http configs for awstats on dataserver