summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Ilvokhin <d@ilvokhin.com>2024-06-15 19:57:19 +0100
committerDmitry Ilvokhin <d@ilvokhin.com>2024-06-15 19:57:19 +0100
commit44de4763a3813e951f1c0360e51539aa8005768f (patch)
tree3de65098b40f3f33b7328a037d66636ebfb7da29
parent603015c7760e12e30cf4f44da22d2be296eafd16 (diff)
downloadinfra-44de4763a3813e951f1c0360e51539aa8005768f.tar.gz
infra-44de4763a3813e951f1c0360e51539aa8005768f.tar.bz2
infra-44de4763a3813e951f1c0360e51539aa8005768f.zip
Add shell playbook to setup shellbox
-rw-r--r--hosts.yml4
-rw-r--r--master.yml1
-rw-r--r--shell.yml4
3 files changed, 9 insertions, 0 deletions
diff --git a/hosts.yml b/hosts.yml
index 87a7647..92c10c4 100644
--- a/hosts.yml
+++ b/hosts.yml
@@ -9,3 +9,7 @@ mail:
vpn:
hosts:
gate.ilvokhin.com:
+
+shell:
+ hosts:
+ gate.ilvokhin.com:
diff --git a/master.yml b/master.yml
index 99aa520..7315830 100644
--- a/master.yml
+++ b/master.yml
@@ -2,3 +2,4 @@
- ansible.builtin.import_playbook: web.yml
- ansible.builtin.import_playbook: mail.yml
- ansible.builtin.import_playbook: vpn.yml
+- ansible.builtin.import_playbook: shell.yml
diff --git a/shell.yml b/shell.yml
new file mode 100644
index 0000000..fed8ba5
--- /dev/null
+++ b/shell.yml
@@ -0,0 +1,4 @@
+- name: Setup shell machines
+ hosts: shell
+ roles:
+ - { role: mutt }