2017-08-11 13:58:39 +02:00
|
|
|
---
|
2018-06-22 15:24:32 +02:00
|
|
|
# .. vim: foldmarker=[[[,]]]:foldmethod=marker
|
|
|
|
#
|
2017-08-11 13:58:39 +02:00
|
|
|
# tasks file for ipr.ansible.xymon
|
|
|
|
|
|
|
|
- name: Load specific OS vars for xymon
|
|
|
|
include_vars: "{{ item }}"
|
|
|
|
with_first_found:
|
|
|
|
- "{{ ansible_distribution|lower }}-{{ ansible_distribution_version }}.yml"
|
|
|
|
- "{{ ansible_distribution|lower }}.yml"
|
|
|
|
- "{{ ansible_os_family|lower }}.yml"
|
|
|
|
|
2018-06-22 15:24:32 +02:00
|
|
|
# Manage required client packages [[[1
|
2017-08-11 13:58:39 +02:00
|
|
|
- name: client package
|
|
|
|
package:
|
2023-01-24 11:45:30 +01:00
|
|
|
name: '{{ xymon_cli__pkg_list | flatten }}'
|
2020-11-03 15:17:08 +01:00
|
|
|
state: '{{ xymon_cli__pkg_state }}'
|
2019-02-06 11:03:34 +01:00
|
|
|
register: cli_result
|
|
|
|
until: cli_result is success
|
2020-11-03 15:17:08 +01:00
|
|
|
when: xymon_cli__manage|bool
|
2017-08-11 13:58:39 +02:00
|
|
|
|
2018-06-22 15:24:32 +02:00
|
|
|
# Manage client configuration [[[1
|
2017-09-04 16:15:42 +02:00
|
|
|
- name: CONFIG xymon-client service
|
2017-08-11 14:33:31 +02:00
|
|
|
template:
|
2020-11-03 15:17:08 +01:00
|
|
|
src: '{{ xymon_cli__default_conf_tpl }}'
|
|
|
|
dest: '{{ xymon_cli__default_conf_path }}'
|
2018-06-22 15:24:32 +02:00
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
mode: 0644
|
2017-08-11 14:33:31 +02:00
|
|
|
backup: true
|
2020-11-03 15:17:08 +01:00
|
|
|
when: xymon_cli__manage|bool
|
2017-08-11 14:42:49 +02:00
|
|
|
notify: restart xymon-client service
|
2017-08-11 14:33:31 +02:00
|
|
|
|
2017-09-04 16:15:42 +02:00
|
|
|
- name: CONFIG xymon user's groups
|
|
|
|
user:
|
|
|
|
name: xymon
|
2020-11-03 15:17:08 +01:00
|
|
|
groups: '{{ xymon_cli__user_groups }}'
|
2018-06-22 15:24:32 +02:00
|
|
|
append: true
|
2020-11-03 15:17:08 +01:00
|
|
|
when: xymon_cli__manage|bool
|
2017-09-04 16:15:42 +02:00
|
|
|
notify: restart xymon-client service
|
|
|
|
|
2018-06-22 15:24:32 +02:00
|
|
|
# Manage service [[[1
|
2020-11-03 15:17:08 +01:00
|
|
|
- name: SERVICE manage '{{ xymon_cli__service_name }}'
|
2017-08-11 14:14:51 +02:00
|
|
|
service:
|
2020-11-03 15:17:08 +01:00
|
|
|
name: '{{ xymon_cli__service_name }}'
|
2017-08-11 14:14:51 +02:00
|
|
|
state: started
|
2020-11-03 15:17:08 +01:00
|
|
|
enabled: '{{ xymon_cli__service_enabled }}'
|
|
|
|
when: (xymon_cli__manage|bool and
|
|
|
|
xymon_cli__service_manage|bool)
|
2017-09-04 17:24:40 +02:00
|
|
|
|
2020-11-03 17:41:37 +01:00
|
|
|
# Manage all plugins's packages [[[1
|
|
|
|
- name: PLUGINS package and dependencies
|
2018-03-02 15:15:11 +01:00
|
|
|
package:
|
2023-01-24 11:45:30 +01:00
|
|
|
name: '{{ xymon_cli__plug_combined_packages | flatten }}'
|
2019-05-24 10:08:06 +02:00
|
|
|
state: 'present'
|
2020-11-03 15:17:08 +01:00
|
|
|
when: (xymon_cli__manage|bool and
|
|
|
|
xymon_cli__plug_manage|bool)
|
2020-11-03 10:09:48 +01:00
|
|
|
register: combined_packages_plug_result
|
|
|
|
until: combined_packages_plug_result is success
|
2018-03-02 15:15:11 +01:00
|
|
|
notify: restart xymon-client service
|
|
|
|
|
2020-11-03 13:31:35 +01:00
|
|
|
# Manage plugins clientlaunch files [[[1
|
|
|
|
- name: PLUGINS clientlaunch files
|
2018-03-02 15:15:11 +01:00
|
|
|
template:
|
2020-11-03 13:31:35 +01:00
|
|
|
src: '{{ item.template }}'
|
|
|
|
dest: '{{ item.path }}'
|
2018-06-22 15:24:32 +02:00
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
mode: 0644
|
2020-11-03 13:31:35 +01:00
|
|
|
with_items:
|
|
|
|
- '{{ xymon_cli__plug_combined_clientlaunch }}'
|
2020-11-03 15:17:08 +01:00
|
|
|
when: (xymon_cli__manage|bool and
|
|
|
|
xymon_cli__plug_manage|bool)
|
2018-03-02 15:15:11 +01:00
|
|
|
notify: restart xymon-client service
|
|
|
|
|
2020-11-03 13:31:35 +01:00
|
|
|
# Manage apt plugin [[[1
|
2018-09-12 10:25:31 +02:00
|
|
|
- name: PLUGIN apt no_repo_accept whitelist
|
|
|
|
template:
|
|
|
|
src: 'etc/xymon/apt_no_repo_accept.j2'
|
|
|
|
dest: '/etc/xymon/apt_no_repo_accept'
|
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
mode: 0644
|
2020-11-03 15:17:08 +01:00
|
|
|
when: (xymon_cli__manage|bool and
|
|
|
|
xymon_cli__plug_manage|bool)
|
2018-09-12 10:25:31 +02:00
|
|
|
notify: restart xymon-client service
|
|
|
|
|
2018-06-22 15:24:32 +02:00
|
|
|
# Manage libs plugin [[[1
|
2018-02-08 17:28:49 +01:00
|
|
|
- name: PLUGIN libs whitelist
|
|
|
|
template:
|
|
|
|
src: 'etc/xymon/libs.local.yaml.j2'
|
|
|
|
dest: '/etc/xymon/libs.local.yaml'
|
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
mode: 0644
|
2020-11-03 15:17:08 +01:00
|
|
|
when: (xymon_cli__manage|bool and
|
|
|
|
xymon_cli__plug_manage|bool)
|
2018-02-08 17:28:49 +01:00
|
|
|
notify: restart xymon-client service
|
|
|
|
|
2020-10-29 17:52:19 +01:00
|
|
|
# Manage net plugin [[[1
|
2020-10-30 12:41:24 +01:00
|
|
|
- name: PLUGIN net config template
|
|
|
|
template:
|
|
|
|
src: '{{ xymon_cli__plug_net_conf_tpl }}'
|
|
|
|
dest: '{{ xymon_cli__plug_net_conf_path }}'
|
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
mode: 0644
|
2020-11-03 15:17:08 +01:00
|
|
|
when: (xymon_cli__manage|bool and
|
|
|
|
xymon_cli__plug_manage|bool)
|
2019-05-24 09:49:54 +02:00
|
|
|
notify: restart xymon-client service
|
|
|
|
|
2020-06-09 13:57:50 +02:00
|
|
|
# Manage sge plugin [[[1
|
|
|
|
- name: PLUGIN sge script file from template
|
|
|
|
template:
|
|
|
|
src: '{{ xymon_cli__plug_sge_script_tpl }}'
|
|
|
|
dest: '{{ xymon_cli__plug_sge_script_path }}'
|
|
|
|
owner: root
|
|
|
|
group: xymon
|
|
|
|
mode: 0755
|
2020-11-03 15:17:08 +01:00
|
|
|
when: (xymon_cli__manage|bool and
|
|
|
|
xymon_cli__plug_manage|bool and
|
2020-06-09 13:57:50 +02:00
|
|
|
xymon_cli__plug_sge_script_url|length == 0 )
|
|
|
|
notify: restart xymon-client service
|
|
|
|
|
|
|
|
- name: PLUGIN sge script file from URL
|
|
|
|
get_url:
|
|
|
|
url: '{{ xymon_cli__plug_sge_script_url }}'
|
|
|
|
dest: '{{ xymon_cli__plug_sge_script_path }}'
|
|
|
|
owner: root
|
|
|
|
group: xymon
|
|
|
|
mode: 0755
|
2020-11-03 15:17:08 +01:00
|
|
|
when: (xymon_cli__manage|bool and
|
|
|
|
xymon_cli__plug_manage|bool and
|
2020-06-09 13:57:50 +02:00
|
|
|
xymon_cli__plug_sge_script_url|length > 0 )
|
|
|
|
notify: restart xymon-client service
|
|
|
|
|
2020-02-25 15:22:37 +01:00
|
|
|
# Manage smartoverall plugin [[[1
|
2020-03-05 15:23:29 +01:00
|
|
|
- name: PLUGIN smartoverall script file from template
|
2020-02-25 15:22:37 +01:00
|
|
|
template:
|
|
|
|
src: '{{ xymon_cli__plug_smartoverall_script_tpl }}'
|
|
|
|
dest: '{{ xymon_cli__plug_smartoverall_script_path }}'
|
|
|
|
owner: root
|
|
|
|
group: xymon
|
|
|
|
mode: 0755
|
2020-11-03 15:17:08 +01:00
|
|
|
when: (xymon_cli__manage|bool and
|
|
|
|
xymon_cli__plug_manage|bool and
|
2020-03-05 15:23:29 +01:00
|
|
|
xymon_cli__plug_smartoverall_script_url|length == 0 )
|
|
|
|
notify: restart xymon-client service
|
|
|
|
|
|
|
|
- name: PLUGIN smartoverall script file from URL
|
|
|
|
get_url:
|
|
|
|
url: '{{ xymon_cli__plug_smartoverall_script_url }}'
|
|
|
|
dest: '{{ xymon_cli__plug_smartoverall_script_path }}'
|
|
|
|
owner: root
|
|
|
|
group: xymon
|
|
|
|
mode: 0755
|
2020-11-03 15:17:08 +01:00
|
|
|
when: (xymon_cli__manage|bool and
|
|
|
|
xymon_cli__plug_manage|bool and
|
2020-03-05 15:23:29 +01:00
|
|
|
xymon_cli__plug_smartoverall_script_url|length > 0 )
|
2020-02-25 15:22:37 +01:00
|
|
|
notify: restart xymon-client service
|
|
|
|
|
2020-02-18 14:24:31 +01:00
|
|
|
# Manage smart plugin [[[1
|
2020-03-05 15:23:29 +01:00
|
|
|
- name: PLUGIN smart script file from template
|
2020-02-18 14:24:31 +01:00
|
|
|
template:
|
|
|
|
src: '{{ xymon_cli__plug_smart_script_tpl }}'
|
|
|
|
dest: '{{ xymon_cli__plug_smart_script_path }}'
|
|
|
|
owner: root
|
|
|
|
group: xymon
|
|
|
|
mode: 0755
|
2020-11-03 15:17:08 +01:00
|
|
|
when: (xymon_cli__manage|bool and
|
|
|
|
xymon_cli__plug_manage|bool and
|
2020-03-05 15:23:29 +01:00
|
|
|
xymon_cli__plug_smart_script_url|length == 0 )
|
|
|
|
notify: restart xymon-client service
|
|
|
|
|
|
|
|
- name: PLUGIN smart script file from URL
|
|
|
|
get_url:
|
|
|
|
url: '{{ xymon_cli__plug_smart_script_url }}'
|
|
|
|
dest: '{{ xymon_cli__plug_smart_script_path }}'
|
|
|
|
owner: root
|
|
|
|
group: xymon
|
|
|
|
mode: 0755
|
2020-11-03 15:17:08 +01:00
|
|
|
when: (xymon_cli__manage|bool and
|
|
|
|
xymon_cli__plug_manage|bool and
|
2020-03-05 15:23:29 +01:00
|
|
|
xymon_cli__plug_smart_script_url|length > 0 )
|
2020-02-18 14:24:31 +01:00
|
|
|
notify: restart xymon-client service
|
|
|
|
|
2018-06-22 16:04:32 +02:00
|
|
|
# Manage zfs plugin [[[1
|
|
|
|
- name: PLUGIN zfs script file
|
|
|
|
template:
|
|
|
|
src: '{{ xymon_cli__plug_zfs_script_tpl }}'
|
|
|
|
dest: '{{ xymon_cli__plug_zfs_script_path }}'
|
|
|
|
owner: root
|
|
|
|
group: xymon
|
|
|
|
mode: 0755
|
2020-11-03 15:17:08 +01:00
|
|
|
when: (xymon_cli__manage|bool and
|
|
|
|
xymon_cli__plug_manage|bool)
|
2019-02-06 10:19:53 +01:00
|
|
|
notify: restart xymon-client service
|