ansible-nginx/tests/includes/post_Debian.yml

22 lines
426 B
YAML
Raw Normal View History

---
- name: APT | Install webapps
apt:
pkg: "{{ item }}"
state: present
install_recommends: no
with_items:
- backuppc
2016-08-25 23:17:32 +07:00
# - owncloud
- name: APT | Install nagios3 (only on old Debian releases)
apt:
pkg: nagios3
state: present
2017-07-27 19:56:43 +07:00
when: ansible_distribution_major_version | version_compare('9', 'lt')
- name: SERVICE | Ensure backuppc is started
2017-10-26 20:47:30 +07:00
service:
name: backuppc
state: started