Add information that files come from Ansible
This commit is contained in:
parent
68ba6f14f1
commit
6931410def
|
@ -1,3 +1,6 @@
|
||||||
|
# {{ ansible_managed }}
|
||||||
|
## From ipr-cnrs.xymon role
|
||||||
|
|
||||||
# Configure the Xymon client settings.
|
# Configure the Xymon client settings.
|
||||||
|
|
||||||
# You MUST set the list of Xymon servers that this
|
# You MUST set the list of Xymon servers that this
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
# {{ ansible_managed }}
|
# {{ ansible_managed }}
|
||||||
|
## From ipr-cnrs.xymon role
|
||||||
{% for package in xymon_plug_apt_combined_whitelist %}
|
{% for package in xymon_plug_apt_combined_whitelist %}
|
||||||
{{ package }}
|
{{ package }}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
[apt]
|
[apt]
|
||||||
|
# {{ ansible_managed }}
|
||||||
|
## From ipr-cnrs.xymon role
|
||||||
{{ '#DISABLED' if xymon_plug_apt_state else 'DISABLED' }}
|
{{ '#DISABLED' if xymon_plug_apt_state else 'DISABLED' }}
|
||||||
ENVFILE /etc/xymon/xymonclient.cfg
|
ENVFILE /etc/xymon/xymonclient.cfg
|
||||||
CMD $XYMONCLIENTHOME/ext/apt
|
CMD $XYMONCLIENTHOME/ext/apt
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
[ipmi]
|
[ipmi]
|
||||||
|
# {{ ansible_managed }}
|
||||||
|
## From ipr-cnrs.xymon role
|
||||||
{{ '#DISABLED' if xymon_cli__plug_ipmi_state else 'DISABLED' }}
|
{{ '#DISABLED' if xymon_cli__plug_ipmi_state else 'DISABLED' }}
|
||||||
ENVFILE /etc/xymon/xymonclient.cfg
|
ENVFILE /etc/xymon/xymonclient.cfg
|
||||||
CMD /usr/bin/sudo -E -u root $XYMONCLIENTHOME/ext/ipmi
|
CMD /usr/bin/sudo -E -u root $XYMONCLIENTHOME/ext/ipmi
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
[libs]
|
[libs]
|
||||||
|
# {{ ansible_managed }}
|
||||||
|
## From ipr-cnrs.xymon role
|
||||||
{{ '#DISABLED' if xymon_plug_libs_state else 'DISABLED' }}
|
{{ '#DISABLED' if xymon_plug_libs_state else 'DISABLED' }}
|
||||||
ENVFILE /etc/xymon/xymonclient.cfg
|
ENVFILE /etc/xymon/xymonclient.cfg
|
||||||
CMD $XYMONCLIENTHOME/ext/libs
|
CMD $XYMONCLIENTHOME/ext/libs
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
[mq]
|
[mq]
|
||||||
|
# {{ ansible_managed }}
|
||||||
|
## From ipr-cnrs.xymon role
|
||||||
{{ '#DISABLED' if xymon_plug_mq_state else 'DISABLED' }}
|
{{ '#DISABLED' if xymon_plug_mq_state else 'DISABLED' }}
|
||||||
ENVFILE /etc/xymon/xymonclient.cfg
|
ENVFILE /etc/xymon/xymonclient.cfg
|
||||||
CMD $XYMONCLIENTHOME/ext/mq
|
CMD $XYMONCLIENTHOME/ext/mq
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
[netstats]
|
[netstats]
|
||||||
|
# {{ ansible_managed }}
|
||||||
|
## From ipr-cnrs.xymon role
|
||||||
{{ '#DISABLED' if xymon_cli__plug_netstats_state else 'DISABLED' }}
|
{{ '#DISABLED' if xymon_cli__plug_netstats_state else 'DISABLED' }}
|
||||||
ENVFILE /etc/xymon/xymonclient.cfg
|
ENVFILE /etc/xymon/xymonclient.cfg
|
||||||
CMD $XYMONCLIENTHOME/ext/netstats
|
CMD $XYMONCLIENTHOME/ext/netstats
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
[zfs]
|
[zfs]
|
||||||
|
# {{ ansible_managed }}
|
||||||
|
## From ipr-cnrs.xymon role
|
||||||
{{ '#DISABLED' if xymon_cli__plug_zfs_state else 'DISABLED' }}
|
{{ '#DISABLED' if xymon_cli__plug_zfs_state else 'DISABLED' }}
|
||||||
ENVFILE /etc/xymon/xymonclient.cfg
|
ENVFILE /etc/xymon/xymonclient.cfg
|
||||||
CMD /usr/bin/sudo -E -u root $XYMONCLIENTHOME/ext/zfs
|
CMD /usr/bin/sudo -E -u root $XYMONCLIENTHOME/ext/zfs
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
# {{ ansible_managed }}
|
# {{ ansible_managed }}
|
||||||
|
## From ipr-cnrs.xymon role
|
||||||
{% set inputmerged = xymon_plug_libs_default_whitelist.copy() %}
|
{% set inputmerged = xymon_plug_libs_default_whitelist.copy() %}
|
||||||
{% set _ = inputmerged.update(xymon_plug_libs_whitelist) %}
|
{% set _ = inputmerged.update(xymon_plug_libs_whitelist) %}
|
||||||
{% set _ = inputmerged.update(xymon_plug_libs_group_whitelist) %}
|
{% set _ = inputmerged.update(xymon_plug_libs_group_whitelist) %}
|
||||||
|
|
|
@ -1,4 +1,8 @@
|
||||||
#!/bin/ksh
|
#!/bin/ksh
|
||||||
|
|
||||||
|
# {{ ansible_managed }}
|
||||||
|
# From ipr-cnrs.xymon role
|
||||||
|
|
||||||
# Revision History:
|
# Revision History:
|
||||||
# 1. Mike Rowell <Mike.Rowell@Rightmove.co.uk>, original
|
# 1. Mike Rowell <Mike.Rowell@Rightmove.co.uk>, original
|
||||||
# 2. Uwe Kirbach <U.Kirbach@EnBW.com>
|
# 2. Uwe Kirbach <U.Kirbach@EnBW.com>
|
||||||
|
|
Loading…
Reference in New Issue