diff options
author | Romain Gonçalves <me@rgoncalves.se> | 2021-12-30 09:38:20 +0000 |
---|---|---|
committer | Romain Gonçalves <me@rgoncalves.se> | 2021-12-30 09:38:20 +0000 |
commit | d759489747495f0c71094fa12d587344bf43c023 (patch) | |
tree | 2d115f4ea29d240b1a24f12596060b15995b2770 /playbooks | |
parent | 249798531e0cbd338686cff52df1172aed3cc4a1 (diff) | |
download | rules-d759489747495f0c71094fa12d587344bf43c023.tar.gz |
playbooks: Move playbook files to root directory
Diffstat (limited to 'playbooks')
l--------- | playbooks/files | 1 | ||||
-rw-r--r-- | playbooks/prerequisites.yml | 12 | ||||
-rw-r--r-- | playbooks/site.yml | 63 | ||||
l--------- | playbooks/templates | 1 | ||||
-rw-r--r-- | playbooks/workstation.yml | 10 |
5 files changed, 0 insertions, 87 deletions
diff --git a/playbooks/files b/playbooks/files deleted file mode 120000 index feb1228..0000000 --- a/playbooks/files +++ /dev/null @@ -1 +0,0 @@ -../files
\ No newline at end of file diff --git a/playbooks/prerequisites.yml b/playbooks/prerequisites.yml deleted file mode 100644 index 3178164..0000000 --- a/playbooks/prerequisites.yml +++ /dev/null @@ -1,12 +0,0 @@ -- hosts: all - gather_facts: false - tasks: - - name: bruteforce python installation with all packages possiblity # noqa: no-changed-when - raw: | - ! pkg_add python3 && - ! pkg install python3 && - apk add python - register: result - ignore_errors: true - failed_when: result.rc not in [0, 1] - poll: 0 diff --git a/playbooks/site.yml b/playbooks/site.yml deleted file mode 100644 index dd11097..0000000 --- a/playbooks/site.yml +++ /dev/null @@ -1,63 +0,0 @@ -- hosts: all - roles: - - role: wireguard - tags: - - role_wireguard - - never - -- hosts: servers - roles: - - role: sshd - tags: role_sshd - - role: prometheus - tags: role_prometheus - - role: loki - tags: role_loki - -- hosts: dc0 - roles: - - role: pf - tags: role_pf - - role: relayd - tags: role_relayd - - role: acme - tags: role_acme - - role: znc - tags: role_znc - -- hosts: stack0 - roles: - - role: nfsd - tags: role_nfsd - -- hosts: stack0-* - roles: - - role: nfsclient - tags: role_nfsclient - -- hosts: stack0-dc1 - roles: - - role: grafana - tags: role_grafana - -- hosts: stack0-dev0,stack0-dc1 - roles: - - role: cgit - tags: role_cgit - -- hosts: stack0-cld0 - roles: - - role: miniflux - tags: role_miniflux - -- hosts: servers - roles: - - role: httpd - tags: role_httpd - -- hosts: stack0 - roles: - - role: vmm - tags: - - role_vmm - - never diff --git a/playbooks/templates b/playbooks/templates deleted file mode 120000 index 564a409..0000000 --- a/playbooks/templates +++ /dev/null @@ -1 +0,0 @@ -../templates
\ No newline at end of file diff --git a/playbooks/workstation.yml b/playbooks/workstation.yml deleted file mode 100644 index 65caed7..0000000 --- a/playbooks/workstation.yml +++ /dev/null @@ -1,10 +0,0 @@ -- hosts: localhost - - pre_tasks: - - name: verify running as root - fail: - when: ansible_user_id != "root" - tags: always - - roles: - - role: workstation |