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,6 +1,6 @@
---
- name: Get nfs-utils
yum: pkg=nfs-utils state=installed
yum: pkg=nfs-utils state=present
- name: Create /srv/pub directory
file: path=/srv/pub state=directory
@@ -9,13 +9,13 @@
file: path=/srv/web state=directory
- name: Get libsemanage-python
yum: pkg=libsemanage-python state=installed
yum: pkg=libsemanage-python state=present
- name: Get policycoreutils-python
yum: pkg=policycoreutils-python state=installed
yum: pkg=policycoreutils-python state=present
- name: Get mod_ssl
yum: pkg=mod_ssl state=installed
yum: pkg=mod_ssl state=present
- name: Set httpd_use_nfs seboolean
action: seboolean name=httpd_use_nfs state=yes persistent=yes