aboutsummaryrefslogblamecommitdiffstats
path: root/roles/fedora/tasks/networkd.yml
blob: d643233363125f5a2ebd9d9ec7ed0d6894920ac2 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                                                              
                   

                        
---
- name: Enable/disable systemd-networkd
  systemd:
    name: systemd-networkd.service
    enabled: "{{ use_networkd|ternary('yes','no') }}"
    masked:  "{{ use_networkd|ternary('no',omit) }}"
    # let the current network daemons run undisturbed until reboot
    # aka. don't cut the pipe we're connected through
    #state:  "{{ use_networkd|ternary('started','stopped') }}"
  when: not chroot
- name: '- when in chroot'
  command: "systemctl {{ use_networkd|ternary('enable','disable') }} systemd-networkd.service"
  when: chroot|bool

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