James Tombleson
b7facd7394
Added Sensu Moved default role downloads to ./roles Added unattended-upgrades
29 lines
763 B
YAML
29 lines
763 B
YAML
---
|
|
# tasks/client.yml: Deploy various client-side configurations for Sensu
|
|
|
|
- name: Include ansible_distribution vars
|
|
include_vars:
|
|
file: "{{ ansible_distribution }}.yml"
|
|
tags: client
|
|
|
|
- name: Deploy Sensu client service configuration
|
|
tags: client
|
|
template:
|
|
dest: "{{ sensu_config_path }}/conf.d/client.json"
|
|
owner: "{{ sensu_user_name }}"
|
|
group: "{{ sensu_group_name }}"
|
|
src: "{{ sensu_client_config }}"
|
|
mode: "0640"
|
|
notify: restart sensu-client service
|
|
|
|
- include_tasks: "{{ role_path }}/tasks/SmartOS/client.yml"
|
|
tags: client
|
|
when: ansible_distribution == "SmartOS"
|
|
|
|
- name: Ensure Sensu client service is running
|
|
tags: client
|
|
service:
|
|
name: "{{ sensu_client_service_name }}"
|
|
state: started
|
|
enabled: yes
|