aboutsummaryrefslogtreecommitdiffstats
path: root/deploy/adapters/ansible/roles/monitor/tasks/main.yml
blob: 6e446944cf755fc94f4692f07cbd297c833b4b94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
---
- 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