aboutsummaryrefslogtreecommitdiff
path: root/hosts
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2016-09-29 16:01:25 -0400
committerB Stack <bgstack15@gmail.com>2016-09-29 16:01:25 -0400
commit4db266d0ec2f78079c8ff271cdb2e78230d3b090 (patch)
tree0df576efa0b3cc31e548904343a10fe43318b508 /hosts
parentreadme (diff)
downloadansible01-4db266d0ec2f78079c8ff271cdb2e78230d3b090.tar.gz
ansible01-4db266d0ec2f78079c8ff271cdb2e78230d3b090.tar.bz2
ansible01-4db266d0ec2f78079c8ff271cdb2e78230d3b090.zip
major overhaul
Diffstat (limited to 'hosts')
-rw-r--r--hosts30
1 files changed, 30 insertions, 0 deletions
diff --git a/hosts b/hosts
new file mode 100644
index 0000000..d48fb17
--- /dev/null
+++ b/hosts
@@ -0,0 +1,30 @@
+# file: /etc/ansible/hosts
+
+one.example.com
+two.example.com
+three.example.com
+four.example.com
+five.example.com
+six.example.com
+
+[centos]
+one.example.com
+two.example.com
+three.example.com
+
+[ubuntu]
+four.example.com
+
+[freebsd:vars]
+ansible_python_interpreter=/usr/local/bin/python2.7
+
+[freebsd]
+five.example.com
+six.example.com
+
+[webservers]
+one.example.com
+
+[test]
+one.example.com
+six.example.com
bgstack15