aboutsummaryrefslogtreecommitdiffstats
path: root/roles/packages/README.md
blob: 374a52f9e1f31db917bfa9524663c82240409049 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
Packages
========

Description
-----------

The `packages` role installs a given set of packages.

Variables
---------

This role **accepts** the following variables:

Variable           | Default  | Description
-------------------|----------|------------
`packages_install` | `[]`     | List of packages to install

Usage
-----

Example playbook:

````yaml
- name: install standard packages
  hosts: all
  roles:
    - role: packages
      vars:
        packages_install:
          - tmux
          - less
          - man
````