rsyncd: dnf -> package, with_item changes
This commit is contained in:
parent
0516df54c1
commit
d0f4549304
1 changed files with 12 additions and 10 deletions
|
@ -4,22 +4,24 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
- name: install rnecessary packages
|
- name: install rnecessary packages
|
||||||
package: state=present name={{item}}
|
package:
|
||||||
with_items:
|
state: present
|
||||||
- rsync
|
name:
|
||||||
- xinetd
|
- rsync
|
||||||
- libsemanage-python
|
- xinetd
|
||||||
|
- libsemanage-python
|
||||||
tags:
|
tags:
|
||||||
- packages
|
- packages
|
||||||
- rsyncd
|
- rsyncd
|
||||||
when: ansible_distribution_major_version|int < 22
|
when: ansible_distribution_major_version|int < 22
|
||||||
|
|
||||||
- name: install rnecessary packages
|
- name: install rnecessary packages
|
||||||
dnf: state=present name={{item}}
|
package:
|
||||||
with_items:
|
state: present
|
||||||
- rsync
|
name:
|
||||||
- xinetd
|
- rsync
|
||||||
- libsemanage-python
|
- xinetd
|
||||||
|
- libsemanage-python
|
||||||
tags:
|
tags:
|
||||||
- packages
|
- packages
|
||||||
- rsyncd
|
- rsyncd
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue