all repos — archive/dotfiles @ 8d688e54a1d68b2f02b397a193a05c5762e691d7

Superseded by nixfiles

Add vagrant configuration with ansible provisioning
Alan Pearce alan@alanpearce.co.uk
Fri, 02 May 2014 19:16:50 +0100
commit

8d688e54a1d68b2f02b397a193a05c5762e691d7

parent

6ff45924c8e408668e0851fb5058700822c77e93

A tag-vagrant/vagrant.d/Vagrantfile
@@ -0,0 +1,7 @@+# -*- mode: ruby -*-
+Vagrant.configure(2) do |config|
+  config.vm.provision "ansible" do |ansible|
+    ansible.playbook = "#{File.dirname(__FILE__)}/ansible/site.yml"
+    ansible.limit = "all"
+  end
+end
A 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
A tag-vagrant/vagrant.d/ansible/debian.yml
@@ -0,0 +1,15 @@+- get_url:
+    url: https://thoughtbot.github.io/rcm/debs/rcm_1.2.2-2_all.deb
+    dest: /tmp/rcm.deb
+
+- command: dpkg --skip-same-version -i /tmp/rcm.deb
+  register: dpkg
+  changed_when: "dpkg.stdout.startswith('Selecting')"
+
+- name: Ensure that tools are installed
+  with_items: packages
+  apt:
+    pkg: "{{ item }}"
+    state: present
+    cache_valid_time: 86400
+    update_cache: yes
A tag-vagrant/vagrant.d/ansible/site.yml
@@ -0,0 +1,32 @@+---
+- hosts: all
+  sudo: yes
+  vars:
+    packages:
+      - zsh
+      - htop
+      - lsof
+      - git
+      - rcm
+  tasks:
+    - include: centos.yml
+      when: ansible_distribution == "CentOS"
+
+    - include: debian.yml
+      when: ansible_distribution == "Debian"
+
+    - name: Ensure that dotfiles are checked out
+      sudo: no
+      git:
+        repo: git://github.com/alanpearce/dotfiles
+        dest: ~/dotfiles
+        update: yes
+
+    - name: Change shell to zsh
+      user:
+        name: vagrant
+        shell: /bin/zsh
+
+    - name: Install dotfiles
+      sudo: no
+      command: /usr/bin/rcup -d dotfiles -t zsh -t git -x README.org -x Brewfile -x LaunchAgents chdir=/home/vagrant