all repos — nixfiles @ bbb26322199d41171595bff6d073bda1fa1fa62c

System and user configuration, managed by nix and home-manager

vagrant/.vagrant.d/ansible/debian.yml (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
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