aboutsummaryrefslogtreecommitdiffstats
path: root/roles/fedora/tasks/resolved.yml
blob: 4fcc34b585782664974029f021c39009c0fdd99d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
---
- name: Configure resolved.conf
  vars:
    resolved_conf: '{{ resolved_conf_default|combine(resolved_conf_role) }}'
  ini_file:
    path: '/etc/systemd/resolved.conf'
    no_extra_spaces: yes
    section: "{{ item.key.split('.',1)[0] }}"
    option:  "{{ item.key.split('.',1)[1] }}"
    value:   "{{ item.value|ternary(item.value,omit) }}"
    state:   "{{ item.value|ternary('present','absent') }}"
  with_dict: '{{ resolved_conf }}'
  when: use_resolved|bool
  notify: restart resolved

- name: Enable/disable systemd-resolved
  systemd:
    name: systemd-resolved.service
    enabled: "{{ use_resolved|ternary('yes','no') }}"
    masked: no
    state: "{{ use_resolved|ternary('started','stopped') }}"
  when: not chroot
- name: '- when in chroot'
  command: "systemctl {{ use_resolved|ternary('enable','disable') }} systemd-resolved.service"
  when: chroot|bool

- name: Symlink /etc/resolv.conf
  file:
    path: '/etc/resolv.conf'
    src: '/run/systemd/resolve/resolv.conf'
    state: link
    force: yes
  when: use_resolved|bool
- name: Use myhostname and possibly resolved nss plugins
  lineinfile:
    path: /etc/nsswitch.conf
    regexp: '^hosts:'
    line: 'hosts:          files resolve [!UNAVAIL=return] dns myhostname'
  when: use_resolved|bool

# vim: set ts=2 sw=2 et: