blob: 9a4bd2fc6e9d78087a43bcb1178676bf702c57c2 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
 | ---
- name: Install extras that Everybody wants
  apt: pkg={{ item }} state=installed
  with_items:
    - build-essential
    - cowsay
    - figlet
    - ipython
    - ipython3
  tags:
    - dependencies
 |