aboutsummaryrefslogtreecommitdiffstats
path: root/doorputer.yml
blob: b444e30ece870ee31a4bcddb57c986bc368f37a5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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: