mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-03-20 03:57:02 +08:00
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:
committed by
Kevin Fenzi
parent
fa85764d3b
commit
4b1e5162d7
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user