kvm-tools/kvmstats/deploy-kvmstats.yml
Alexis Ben Miloud--Josselin 5f250007ee [kvmstats] disable cron for now
2019-08-01 15:17:57 +02:00

23 lines
555 B
YAML

###
# ansible-playbook -l $hosts -K --diff --check deploy-kvmstats.yml
---
- hosts: all
become: yes
tasks:
- name: kvmstats is installed
copy:
src: kvmstats
dest: /usr/share/scripts/kvmstats
mode: "0700"
- name: cron for kvmstats is installed
copy:
src: kvmstats.cron
dest: /etc/cron.hourly/kvmstats
mode: "0644"
- name: entry for kvmstats in web page is present
lineinfile:
dest: /var/www/index.html
insertbefore: '</ul>'
line: '<li><a href="/kvmstats.html">kvmstats</a></li>'