aboutsummaryrefslogtreecommitdiffstats
path: root/roles/space_server/tasks/radvd.yml
blob: 2d831d15b33b77550122f1c9769ee02bd0c97a13 (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
---
- name: Configure radvd
  copy:
    dest: '/etc/radvd.conf'
    src: radvd.conf
    owner: root
    group: root
    mode: 0644
  notify:
  - restart radvd

- name: Enable radvd service
  systemd:
    name: radvd.service
    enabled: yes
    masked: no
    state: started
  when: not chroot
- name: '- when in chroot'
  command: systemctl enable radvd.service
  args:
    creates: '/etc/systemd/system/multi-user.target.wants/radvd.service'
  when: chroot

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