ansible-nginx/tests/includes/post_Debian.yml

20 lines
416 B
YAML

---
- name: APT | Install webapps
apt:
pkg: "{{ item }}"
state: present
install_recommends: no
with_items:
- backuppc
# - owncloud
- name: APT | Install nagios3 (only on old Debian releases)
apt:
pkg: nagios3
state: present
when: ansible_distribution_major_version | version_compare('9', 'lt')
- name: SERVICE | Ensure backuppc is started
service: name=backuppc state=started