mirror of
https://github.com/HanXHX/ansible-nginx.git
synced 2026-04-15 13:12:10 +07:00
* Drop Nagios support * Fix start PHP-FPM on Docker * Fix deprecations on Ansible 2.7 - with_ -> loop - fix filters as test - test version_compare -> version - set min_version to 2.5
26 lines
609 B
YAML
26 lines
609 B
YAML
---
|
|
|
|
#- name: APT | Install web apps
|
|
# pkgng:
|
|
# pkg: "{{ item }}"
|
|
# state: present
|
|
# with_items:
|
|
# - backuppc
|
|
#
|
|
#- name: COMMAND | Activate backuppc config
|
|
# command: >
|
|
# cp /usr/local/etc/backuppc/config.pl.sample /usr/local/etc/backuppc/config.pl
|
|
# creates=/usr/local/etc/backuppc/config.pl
|
|
#
|
|
#- name: FILE | Fix backuppc permissions
|
|
# file:
|
|
# path: /usr/local/etc/backuppc/config.pl
|
|
# owner: backuppc
|
|
# group: backuppc
|
|
#
|
|
#
|
|
# We don't manage BackupPC on FreeBSD... too dirty. :/
|
|
#
|
|
#- name: SERVICE | Ensure backuppc is started
|
|
# service: name=backuppc state=started enabled=yes
|