diff options
-rw-r--r-- | hosts.yml | 4 | ||||
-rw-r--r-- | master.yml | 1 | ||||
-rw-r--r-- | shell.yml | 4 |
3 files changed, 9 insertions, 0 deletions
@@ -9,3 +9,7 @@ mail: vpn: hosts: gate.ilvokhin.com: + +shell: + hosts: + gate.ilvokhin.com: @@ -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 } |