all repos — archive/dotfiles @ 8d688e54a1d68b2f02b397a193a05c5762e691d7

Superseded by nixfiles

Add vagrant configuration with ansible provisioning

Alan Pearce
commit

8d688e54a1d68b2f02b397a193a05c5762e691d7

parent

6ff45924c8e408668e0851fb5058700822c77e93

1 file changed, 15 insertions(+), 0 deletions(-)

changed files
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