aboutsummaryrefslogtreecommitdiffstats
path: root/deploy/adapters/ansible/roles/monitor/tasks/main.yml
blob: 1cc21fe07ce797662ff5b7b994c35b78c0cf4a8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---
- include_vars: "{{ ansible_os_family }}.yml"

- name: copy service check file
  copy: src=check_{{ ansible_os_family }}_service.sh dest=/usr/local/bin/check_service.sh mode=0777

- name: copy cron file
  copy: src=root dest={{ cron_path }}/root mode=0600

- name: restart cron
  service: name={{ cron }} state=restarted

- meta: flush_handlers