11 lines
200 B
YAML
11 lines
200 B
YAML
|
---
|
||
|
|
||
|
- name: APT | Install web apps
|
||
|
apt: pkg={{ item }} state=present
|
||
|
with_items:
|
||
|
- nagios3
|
||
|
- backuppc
|
||
|
|
||
|
- name: SERVICE | Ensure backuppc is started
|
||
|
service: name=backuppc state=started
|