aboutsummaryrefslogtreecommitdiffstats
path: root/roles/host_test/tasks/main.yml
diff options
context:
space:
mode:
Diffstat (limited to 'roles/host_test/tasks/main.yml')
-rw-r--r--roles/host_test/tasks/main.yml13
1 files changed, 13 insertions, 0 deletions
diff --git a/roles/host_test/tasks/main.yml b/roles/host_test/tasks/main.yml
new file mode 100644
index 0000000..1246073
--- /dev/null
+++ b/roles/host_test/tasks/main.yml
@@ -0,0 +1,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