diff options
author | binary <me@rgoncalves.se> | 2020-11-19 14:12:20 +0100 |
---|---|---|
committer | binary <me@rgoncalves.se> | 2020-11-19 14:12:20 +0100 |
commit | 036024a564120ea9dd9da2a8136f09275c6b46a8 (patch) | |
tree | 510453ec6189e0845c79715bd4d4aeff694242a6 /playbooks | |
parent | 668b623654df9af9a0c40478ffd493c17283780f (diff) | |
download | infrastructure-036024a564120ea9dd9da2a8136f09275c6b46a8.tar.gz |
Remove unused files
Diffstat (limited to 'playbooks')
-rw-r--r-- | playbooks/debug.yml | 8 | ||||
-rw-r--r-- | playbooks/init_vm.yml | 17 | ||||
-rw-r--r-- | playbooks/init_vms.yml | 11 | ||||
-rw-r--r-- | playbooks/site.yml | 9 | ||||
-rw-r--r-- | playbooks/sshdns.yml | 12 | ||||
l--------- | playbooks/templates | 1 | ||||
-rw-r--r-- | playbooks/vmm.yml | 7 |
7 files changed, 0 insertions, 65 deletions
diff --git a/playbooks/debug.yml b/playbooks/debug.yml deleted file mode 100644 index c87d8aa..0000000 --- a/playbooks/debug.yml +++ /dev/null @@ -1,8 +0,0 @@ ---- - -- name: Debug - hosts: all - tasks: - - - debug: - var: hostvars[ansible_host] diff --git a/playbooks/init_vm.yml b/playbooks/init_vm.yml deleted file mode 100644 index 2f6e027..0000000 --- a/playbooks/init_vm.yml +++ /dev/null @@ -1,17 +0,0 @@ - -# init_vm.yml - ---- - -- hosts: "{{ host }}" - tasks: - - - include_role: - name: vmm - tasks_from: init_vm_alpine.yml - when: groups["alpine"] | select("search", guest) | list | length > 0 - - - include_role: - name: vmm - tasks_from: init_vm_openbsd.yml - when: groups["openbsd"] | select("search", guest) | list | length > 0 diff --git a/playbooks/init_vms.yml b/playbooks/init_vms.yml deleted file mode 100644 index 3da35dc..0000000 --- a/playbooks/init_vms.yml +++ /dev/null @@ -1,11 +0,0 @@ - -# init_vm.yml -# Initialize mutliple vms, with os-agnostic tasks - ---- - -- include: init_vm.yml - vars: - host: "{{ host }}" - guest: "{{ item }}" - loop: "{{ vms | select('search', 'iso') | list }}" diff --git a/playbooks/site.yml b/playbooks/site.yml deleted file mode 100644 index 0775b58..0000000 --- a/playbooks/site.yml +++ /dev/null @@ -1,9 +0,0 @@ - -# site.yml -# Deploy configuration to all servers. - -- hosts: servers - - roles: - - { role : common } - - { role: tools } diff --git a/playbooks/sshdns.yml b/playbooks/sshdns.yml deleted file mode 100644 index d343cf4..0000000 --- a/playbooks/sshdns.yml +++ /dev/null @@ -1,12 +0,0 @@ - -# sshdns.yml -# bind host to dns for ssh - ---- - -- hosts: localhost - tasks: - - - include_role: - name: ssh - tasks_from: generate_dns 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/vmm.yml b/playbooks/vmm.yml deleted file mode 100644 index e0034ef..0000000 --- a/playbooks/vmm.yml +++ /dev/null @@ -1,7 +0,0 @@ - -# vmm.yml -# Init vmm iso for specified host. - -- hosts: "{{ host }}" - roles: - - vmm |