Deprecation warning about "installed" for state

This commit is contained in:
Jeremy Gardais 2018-07-25 15:12:50 +02:00
parent a430015cce
commit 9054815d85
Signed by: jegardai
GPG Key ID: E759BAA22501AF32
3 changed files with 9 additions and 5 deletions

View File

@ -1,7 +1,11 @@
## v1.X
### Fix
* Deprecation warning about "installed" for state.
## v1.2
## Enhancements
### Enhancements
* Ensure to not override groups of 'xymon' user.
* Add possibility to install `apt` plugin dependencies.
* Ensure to apply the config only if wanted.
@ -11,7 +15,7 @@
## v1.1
## Enhancements
### Enhancements
* Add possibility to install `mq` plugin dependencies.
* Add possibility to install `libs` plugin dependencies.
* Add whitelist settings for `libs` plugin.

View File

@ -17,7 +17,7 @@ Manage Xymon (client) installation and configuration.
## Role Variables
* **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_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 }}`].

View File

@ -17,13 +17,13 @@ xymon_cli_manage: true
# What is the desired state which this role's packages should be?
# Possible options:
#
# ``installed``
# ``present``
# Default. Ensure the packages are installed.
#
# ``absent``
# Ensure to remove the packages.
#
xymon_cli_pkg_state: 'installed'
xymon_cli_pkg_state: 'present'
# ]]]
# ]]]
# Server configuration and service [[[