summary refs log tree commit diff stats
path: root/tag-vagrant/vagrant.d/ansible/centos.yml
diff options
context:
space:
mode:
authorAlan Pearce2014-05-02 19:16:50 +0100
committerAlan Pearce2014-05-02 19:16:50 +0100
commit8d688e54a1d68b2f02b397a193a05c5762e691d7 (patch)
tree1dea8b23abe6f7f641c01e3972b7b127ff4c2f68 /tag-vagrant/vagrant.d/ansible/centos.yml
parent6ff45924c8e408668e0851fb5058700822c77e93 (diff)
downloaddotfiles-8d688e54a1d68b2f02b397a193a05c5762e691d7.tar.lz
dotfiles-8d688e54a1d68b2f02b397a193a05c5762e691d7.tar.zst
dotfiles-8d688e54a1d68b2f02b397a193a05c5762e691d7.zip
Add vagrant configuration with ansible provisioning
Diffstat (limited to 'tag-vagrant/vagrant.d/ansible/centos.yml')
-rw-r--r--tag-vagrant/vagrant.d/ansible/centos.yml31
1 files changed, 31 insertions, 0 deletions
diff --git a/tag-vagrant/vagrant.d/ansible/centos.yml b/tag-vagrant/vagrant.d/ansible/centos.yml
new file mode 100644
index 0000000..1a6759a
--- /dev/null
+++ b/tag-vagrant/vagrant.d/ansible/centos.yml
@@ -0,0 +1,31 @@
+- name: Ensure EPEL repository package is present
+  register: centos_repos
+  get_url:
+    url: "{{ item.url }}"
+    dest: "/root/{{ item.dest }}"
+  with_items:
+    - url: http://lon.mirror.rackspace.com/ius/stable/CentOS/6/x86_64/epel-release-6-5.noarch.rpm
+      dest: epel-repo.rpm
+    - url: http://lon.mirror.rackspace.com/ius/stable/CentOS/6/x86_64/ius-release-1.0-11.ius.centos6.noarch.rpm
+      dest: ius-repo.rpm
+
+- name: Fetch utilities repo
+  get_url:
+    url: http://download.opensuse.org/repositories/utilities/CentOS_6/utilities.repo
+    dest: /etc/yum.repos.d/utilities.repo
+
+- name: Ensure IUS and EPEL repositories are installed
+  when: centos_repos.changed
+  yum:
+    name: "{{ item }}"
+    state: installed
+  with_items:
+    - /root/epel-repo.rpm
+    - /root/ius-repo.rpm
+
+
+- name: Ensure that tools are installed
+  with_items: packages
+  yum:
+    name: "{{ item }}"
+    state: present