First cut at value01.stg migation to ansible
This commit is contained in:
parent
f13a334165
commit
6e9746864e
9 changed files with 1097 additions and 0 deletions
25
roles/supybot/tasks/main.yml
Normal file
25
roles/supybot/tasks/main.yml
Normal file
|
@ -0,0 +1,25 @@
|
|||
- name: install supybot package
|
||||
yum: pkg={{ item }} state=installed
|
||||
with_items:
|
||||
- supybot-gribble
|
||||
- supybot-fedora
|
||||
- supybot-koji
|
||||
- supybot-notify
|
||||
- supybot-pinglists
|
||||
|
||||
- name: creating zodbot log dir
|
||||
file: path={{ item }} state=directory owner=daemon
|
||||
with_items:
|
||||
- /var/lib/zodbot
|
||||
|
||||
- name: setup meetings_by_team script
|
||||
copy: src=meetings_by_team dest=/usr/local/bin/meetings_by_team.sh mode=755
|
||||
|
||||
- name: teams cron job
|
||||
cron: name=meetings-by-team hour="23" minute="0" user=daemon job="/usr/local/bin/meetings_by_team.sh"
|
||||
|
||||
- name: hotfix - packagedb-cli which is a new dep but is not there in the rpm
|
||||
yum: pkg=packagedb-cli state=installed
|
||||
|
||||
- name: hotfix - supybot plugin
|
||||
copy: src=plugin.py dest=/usr/lib/python2.6/site-packages/supybot/plugins/Fedora/plugin.py mode=755 owner=root
|
Loading…
Add table
Add a link
Reference in a new issue