diff options
-rw-r--r-- | ansible/all.yml | 2 | ||||
-rw-r--r-- | ansible/inventory | 4 | ||||
-rw-r--r-- | ansible/plays/users.yml | 5 |
3 files changed, 8 insertions, 3 deletions
diff --git a/ansible/all.yml b/ansible/all.yml index 83623cf..bd02ad3 100644 --- a/ansible/all.yml +++ b/ansible/all.yml @@ -1,8 +1,6 @@ - hosts: - all roles: - - lusers - - superusers - role: packages tags: packages become: yes diff --git a/ansible/inventory b/ansible/inventory index 91398d9..5789258 100644 --- a/ansible/inventory +++ b/ansible/inventory @@ -1,8 +1,10 @@ all: hosts: knot: - ansible_host: knot.trygvis.io + ansible_host: knot.vpn.trygvis.io ansible_python_interpreter: /usr/bin/python3 + hash: + ansible_host: hash.trygvis.io numquam: ansible_host: numquam.trygvis.io birgitte: diff --git a/ansible/plays/users.yml b/ansible/plays/users.yml new file mode 100644 index 0000000..4be24ee --- /dev/null +++ b/ansible/plays/users.yml @@ -0,0 +1,5 @@ +- hosts: + - all + roles: + - lusers + - superusers |