aboutsummaryrefslogtreecommitdiffstats
path: root/roles/host_test/tasks/main.yml
blob: 12460736789e4bd3386b5120e8a3f0dae405d812 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
- name: Set up /etc/rc.conf
  template:
    src: "{{ playbook_dir }}/roles/host/templates/etc_rc.conf.j2"
    dest: /etc/rc.conf
    owner: root
    group: wheel
    mode: "0644"
  vars:
    is_prod: false
  notify: Apply rc.conf

- name: Flush handlers
  meta: flush_handlers