Update state from installed/removed to present/absent for yum module as per latest documents -> http://docs.ansible.com/yum_module.html

This commit is contained in:
Praveen Kumar 2014-10-29 09:08:40 +05:30 committed by Kevin Fenzi
parent fa85764d3b
commit 4b1e5162d7
93 changed files with 120 additions and 120 deletions

View file

@ -1,5 +1,5 @@
- name: install supybot package
yum: pkg={{ item }} state=installed
yum: pkg={{ item }} state=present
with_items:
- supybot-gribble
- supybot-fedora
@ -39,7 +39,7 @@
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
yum: pkg=packagedb-cli state=present
- name: hotfix - supybot plugin
copy: src=plugin.py dest=/usr/lib/python2.6/site-packages/supybot/plugins/Fedora/plugin.py mode=755 owner=root