blob: 1bbae100ada46f3175b5130ba7b4789a835293b9 (
plain) (
tree)
|
|
---
#- name: Enable systemd-resolved
# systemd:
# name: systemd-resolved.service
# enabled: yes
# masked: no
# state: started
# when: not chroot
#- name: '- when in chroot'
# command: systemctl enable systemd-resolved.service
# args:
# creates: '/etc/systemd/system/multi-user.target.wants/systemd-resolved.service'
# when: chroot
#
#- name: Use systemd-resolved
# lineinfile:
# path: '/etc/nsswitch.conf'
# regexp: '^hosts:'
# line: 'hosts: files resolve [!UNAVAIL=return] dns myhostname'
- name: Disable systemd-resolved
systemd:
name: systemd-resolved.service
enabled: no
masked: no
state: stopped
when: not chroot
- name: '- when in chroot'
command: systemctl disable systemd-resolved.service
args:
removes: '/etc/systemd/system/multi-user.target.wants/systemd-resolved.service'
when: chroot
# vim: set ts=2 sw=2 et:
|