Browse Source

Add playbook for deploying ansible

master
Chris Smith 10 years ago
parent
commit
4d20641f55
1 changed files with 15 additions and 0 deletions
  1. 15
    0
      playbooks/ansible-staging.yml

+ 15
- 0
playbooks/ansible-staging.yml View File

@@ -0,0 +1,15 @@
1
+---
2
+# Sets up servers to be used to push ansible configs out
3
+
4
+- hosts: ansible-staging
5
+  user: root
6
+  tasks:
7
+
8
+    - include: includes/install-from-ppa
9
+      vars:
10
+        package: ansible
11
+        ppa: ppa:rquillo/ansible
12
+        ppa_mint: deb http://ppa.launchpad.net/rquillo/ansible/ubuntu raring main
13
+
14
+    - name: install git
15
+      apt: pkg=git

Loading…
Cancel
Save