aboutsummaryrefslogtreecommitdiffstats
path: root/doorputer.yml
diff options
context:
space:
mode:
Diffstat (limited to 'doorputer.yml')
-rw-r--r--doorputer.yml15
1 files changed, 15 insertions, 0 deletions
diff --git a/doorputer.yml b/doorputer.yml
new file mode 100644
index 0000000..b444e30
--- /dev/null
+++ b/doorputer.yml
@@ -0,0 +1,15 @@
+---
+- hosts: doorputer.s
+ pre_tasks:
+ - name: Detect chroot
+ set_fact:
+ chroot: "{{ ansible_connection == 'chroot' or 'container' in ansible_env }}"
+ tags: always
+ - name: Load secrets
+ include_vars: 'secrets.yml'
+ ignore_errors: yes
+ tags: always
+ roles:
+ - doorputer
+
+# vim: set ts=2 sw=2 et: