base/hosts: Clean up some depreciations.
koji_builder/sudo: Clean up some more depreciations. Signed-off-by: Kevin Fenzi <kevin@scrye.com>
This commit is contained in:
parent
93e8e1225b
commit
386d9a1d02
4 changed files with 6 additions and 6 deletions
|
@ -6,7 +6,7 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
- name: ensure packages required for semanage are installed (yum)
|
- name: ensure packages required for semanage are installed (yum)
|
||||||
yum: name={{ item }} state=present
|
package: name={{ item }} state=present
|
||||||
with_items:
|
with_items:
|
||||||
- policycoreutils-python
|
- policycoreutils-python
|
||||||
tags:
|
tags:
|
||||||
|
@ -14,7 +14,7 @@
|
||||||
when: ansible_distribution_major_version|int < 8
|
when: ansible_distribution_major_version|int < 8
|
||||||
|
|
||||||
- name: ensure packages required for semanage are installed (dnf)
|
- name: ensure packages required for semanage are installed (dnf)
|
||||||
dnf: name=policycoreutils-python-utils state=present
|
package: name=policycoreutils-python-utils state=present
|
||||||
when: ansible_distribution_major_version|int > 27 and ansible_cmdline.ostree is not defined
|
when: ansible_distribution_major_version|int > 27 and ansible_cmdline.ostree is not defined
|
||||||
tags:
|
tags:
|
||||||
- selinux
|
- selinux
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
- "{{ ansible_domain }}-hosts"
|
- "{{ ansible_domain }}-hosts"
|
||||||
- "{{ datacenter }}-hosts"
|
- "{{ datacenter }}-hosts"
|
||||||
- "base"
|
- "base"
|
||||||
skip: true
|
errors: ignore
|
||||||
tags:
|
tags:
|
||||||
- config
|
- config
|
||||||
- hosts
|
- hosts
|
||||||
|
|
|
@ -63,8 +63,8 @@
|
||||||
- koji_builder
|
- koji_builder
|
||||||
|
|
||||||
- name: add pkgs
|
- name: add pkgs
|
||||||
dnf: state=present pkg={{ item }}
|
package: state=present pkg={{ packages }}
|
||||||
with_items:
|
packages:
|
||||||
- koji-builder
|
- koji-builder
|
||||||
- python2-koji
|
- python2-koji
|
||||||
- python-krbV
|
- python-krbV
|
||||||
|
|
|
@ -44,7 +44,7 @@
|
||||||
- "{{ private }}/files/sudo/{{ inventory_hostname }}-sudoers"
|
- "{{ private }}/files/sudo/{{ inventory_hostname }}-sudoers"
|
||||||
- "{{ private }}/files/sudo/{{ ansible_hostname }}-sudoers"
|
- "{{ private }}/files/sudo/{{ ansible_hostname }}-sudoers"
|
||||||
- "{{ private }}/files/sudo/{{ ansible_domain }}-sudoers"
|
- "{{ private }}/files/sudo/{{ ansible_domain }}-sudoers"
|
||||||
skip: true
|
errors: ignore
|
||||||
tags:
|
tags:
|
||||||
- config
|
- config
|
||||||
- sudo
|
- sudo
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue