aboutsummaryrefslogtreecommitdiffstats
path: root/roles/relayd/tasks/main.yml
blob: 3af5756873529ac21e1259466f2e44f05818a6a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
- name: generate relayd configuration
  template:
    src: relayd.conf.j2
    dest: "{{ relayd_configuration_file }}"
    owner: 0
    group: 0
    mode: 0640
  notify: lint relayd configuration

- name: enable and restart relayd
  service:
    name: relayd
    state: restarted
    enabled: true
remember that computers suck.