fix a spelling mistake

This commit is contained in:
Stephen Smoogen 2016-05-06 12:57:45 +00:00
parent f327c7e0f2
commit a58965adc2

View file

@ -1,25 +1,26 @@
--- ---
- name: install awstats package - name: install awstats package
yum: state=present name=awststs yum: state=present name=awstats
tags: tags:
- packages - packages
- awstats - awstats
- name: make the awstats directory - name: make the awstats directory
file: path=/var/www/html/awstats-reports state=directory file: path=/var/www/html/awstats-reports state=directory
when inventory_hostname.startswith('data-analysis')
tags: tags:
- awstats - awstats
- name: awstats proxy merge script (log01) - name: awstats proxy merge script (log01)
copy: src=combineHttpLogs.sh dest=/usr/local/bin/ mode=0755 copy: src=combineHttpLogs.sh dest=/usr/local/bin/ mode=0755
when: inventory_hostname.startswith('log01') when: inventory_hostname.startswith('log')
tags: tags:
- config - config
- awstats - awstats
- name: awstats daily cron job to merge old logs - name: awstats daily cron job to merge old logs
copy: src=combineHttp.cron dest=/etc/cron.d/ mode=0644 copy: src=combineHttp.cron dest=/etc/cron.d/ mode=0644
when: inventory_hostname.startswith('log01') when: inventory_hostname.startswith('log')
tags: tags:
- cron - cron
- awstats - awstats