aboutsummaryrefslogtreecommitdiffstats
path: root/space.yml
blob: 90f12b69351362623894694fe512067a8d812ba9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---
- hosts: space
  pre_tasks:
  - name: Detect chroot
    set_fact:
      chroot: "{{ ansible_connection == 'chroot' or 'container' in ansible_env }}"
    tags: always
  - name: Load secrets
    include_vars: '{{ item }}'
    with_first_found:
    - files:
      - /etc/ansible/secrets.yml
      - secrets.yml
      skip: true
    tags:
    - radius
  roles:
  - space_server

# vim: set ts=2 sw=2 et: