Use cleaner lookup instead of grep
This commit is contained in:
parent
2e522d2ce2
commit
0e4a0b0237
1 changed files with 3 additions and 7 deletions
|
@ -21,14 +21,10 @@
|
|||
append: yes
|
||||
groups: libvirt
|
||||
|
||||
- name: Check if 'libvirt libvirt_guest' is in /etc/nsswitch.conf
|
||||
command: grep -c 'libvirt libvirt_guest' /etc/nsswitch.conf
|
||||
register: presence
|
||||
ignore_errors: true
|
||||
changed_when: presence.stdout == '0'
|
||||
|
||||
- name: Put 'libvirt libvirt_guest' in /etc/nsswitch.conf
|
||||
become: true
|
||||
vars:
|
||||
nsswitch_content: "{{ lookup('file', '/etc/nsswitch.conf') }}"
|
||||
lineinfile:
|
||||
path: /etc/nsswitch.conf
|
||||
regexp: '^hosts: (.+)'
|
||||
|
@ -36,4 +32,4 @@
|
|||
state: present
|
||||
backrefs: true
|
||||
backup: true
|
||||
when: presence.stdout == '0'
|
||||
when: "'libvirt libvirt_guest' not in nsswitch_content"
|
||||
|
|
Loading…
Add table
Reference in a new issue