Deprecation warning about "installed" for state
This commit is contained in:
parent
a430015cce
commit
9054815d85
|
@ -1,7 +1,11 @@
|
||||||
|
## v1.X
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
* Deprecation warning about "installed" for state.
|
||||||
|
|
||||||
## v1.2
|
## v1.2
|
||||||
|
|
||||||
## Enhancements
|
### Enhancements
|
||||||
* Ensure to not override groups of 'xymon' user.
|
* Ensure to not override groups of 'xymon' user.
|
||||||
* Add possibility to install `apt` plugin dependencies.
|
* Add possibility to install `apt` plugin dependencies.
|
||||||
* Ensure to apply the config only if wanted.
|
* Ensure to apply the config only if wanted.
|
||||||
|
@ -11,7 +15,7 @@
|
||||||
|
|
||||||
## v1.1
|
## v1.1
|
||||||
|
|
||||||
## Enhancements
|
### Enhancements
|
||||||
* Add possibility to install `mq` plugin dependencies.
|
* Add possibility to install `mq` plugin dependencies.
|
||||||
* Add possibility to install `libs` plugin dependencies.
|
* Add possibility to install `libs` plugin dependencies.
|
||||||
* Add whitelist settings for `libs` plugin.
|
* Add whitelist settings for `libs` plugin.
|
||||||
|
|
|
@ -17,7 +17,7 @@ Manage Xymon (client) installation and configuration.
|
||||||
## Role Variables
|
## Role Variables
|
||||||
|
|
||||||
* **xymon_cli_manage** : If `xymon-client` should be managed with this role [default : `true`].
|
* **xymon_cli_manage** : If `xymon-client` should be managed with this role [default : `true`].
|
||||||
* **xymon_cli_pkg_state** : State of new `xymon-client` package(s) [default : `installed`].
|
* **xymon_cli_pkg_state** : State of new `xymon-client` package(s) [default : `present`].
|
||||||
* **xymon_cli_default_conf_path** : Configuration file for `xymon-client` [default : `/etc/default/xymon-client`].
|
* **xymon_cli_default_conf_path** : Configuration file for `xymon-client` [default : `/etc/default/xymon-client`].
|
||||||
* **xymon_cli_default_conf_tpl** : Template used to generate the previous config file [default : `etc/default/xymon-client.j2`].
|
* **xymon_cli_default_conf_tpl** : Template used to generate the previous config file [default : `etc/default/xymon-client.j2`].
|
||||||
* **xymon_cli_hostname** : Allow to override default value of CLIENTHOSTNAME var [default : `{{ ansible_fqdn }}`].
|
* **xymon_cli_hostname** : Allow to override default value of CLIENTHOSTNAME var [default : `{{ ansible_fqdn }}`].
|
||||||
|
|
|
@ -17,13 +17,13 @@ xymon_cli_manage: true
|
||||||
# What is the desired state which this role's packages should be?
|
# What is the desired state which this role's packages should be?
|
||||||
# Possible options:
|
# Possible options:
|
||||||
#
|
#
|
||||||
# ``installed``
|
# ``present``
|
||||||
# Default. Ensure the packages are installed.
|
# Default. Ensure the packages are installed.
|
||||||
#
|
#
|
||||||
# ``absent``
|
# ``absent``
|
||||||
# Ensure to remove the packages.
|
# Ensure to remove the packages.
|
||||||
#
|
#
|
||||||
xymon_cli_pkg_state: 'installed'
|
xymon_cli_pkg_state: 'present'
|
||||||
# ]]]
|
# ]]]
|
||||||
# ]]]
|
# ]]]
|
||||||
# Server configuration and service [[[
|
# Server configuration and service [[[
|
||||||
|
|
Loading…
Reference in New Issue