blob: 726d8905121273520110239f0a3f3f7c73606d50 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
---
- name: install vnstat
include: install_vnstat.yml
- name: add bash script to check internet
copy:
src: check_internet.sh
dest: /usr/local/bin/check_internet.sh
mode: 0744
- name: add cronjob to check internet
cron:
name: check_internet
user: root
cron_file: fastd-api
job: '/usr/local/bin/check_internet.sh'
- name: install ffmyk-influx
include: install_ffmyk-influx.yml
- name: install munin
include: install_munin.yml
|