summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ansible/hosts1
-rw-r--r--ansible/servers.yml12
2 files changed, 13 insertions, 0 deletions
diff --git a/ansible/hosts b/ansible/hosts
index 19f4514..e5d487d 100644
--- a/ansible/hosts
+++ b/ansible/hosts
@@ -2,6 +2,7 @@ willikins hostname=willikins distro=jessie
tvdev hostname=tvdev distro=jessie
tvansible hostname=tvansible distro=unstable
django hostname=django distro=jessie
+exolobe2 hostname=exolobe2 distro=jessie
[obbench]
obbench3.default.liw.uk0.bigv.io hostname=obbench3 distro=jessie
diff --git a/ansible/servers.yml b/ansible/servers.yml
index 4a77d14..8c73ecf 100644
--- a/ansible/servers.yml
+++ b/ansible/servers.yml
@@ -11,4 +11,16 @@
- liw-usual
- apt-upgrade
- users
+- hosts: exolobe2
+ remote_user: ansible
+ sudo: yes
+ vars:
+ debian_mirror: http://httpredir.debian.org/debian
+ debian_mirror_src: http://httpredir.debian.org/debian
+ roles:
+ - basic-setup
+ - apt-setup
+ - liw-usual
+ - apt-upgrade
+ - users
...