Fix deprecation warning for state "installed"
This commit is contained in:
parent
485f7fa83d
commit
733b546e56
|
@ -4,10 +4,12 @@
|
||||||
* Set a variable to enable/disable the support of Nftables.
|
* Set a variable to enable/disable the support of Nftables.
|
||||||
* Move two task in systemd handler (try to fix #1).
|
* Move two task in systemd handler (try to fix #1).
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
* Deprecation warning for state "installed".
|
||||||
|
|
||||||
## v1.3.1
|
## v1.3.1
|
||||||
|
|
||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* Reload systemd daemons only if unit file change.
|
* Reload systemd daemons only if unit file change.
|
||||||
|
|
||||||
## v1.3
|
## v1.3
|
||||||
|
|
|
@ -20,7 +20,7 @@ Highly inspired by [Mike Gleason firewall role][mikegleasonjr firewall github] (
|
||||||
## Role Variables
|
## Role Variables
|
||||||
|
|
||||||
* **nft_enabled** : Enable or disable support for Nftables [default : `true`].
|
* **nft_enabled** : Enable or disable support for Nftables [default : `true`].
|
||||||
* **nft_pkg_state** : State of new `nftables` package(s) [default : `installed`].
|
* **nft_pkg_state** : State of new `nftables` package(s) [default : `present`].
|
||||||
* **nft_old_pkg_list** : The list of useless packages to remove (such as Iptables,…) [default : `iptables`].
|
* **nft_old_pkg_list** : The list of useless packages to remove (such as Iptables,…) [default : `iptables`].
|
||||||
* **nft_old_pkg_state** : State of old package(s) [default : `absent`].
|
* **nft_old_pkg_state** : State of old package(s) [default : `absent`].
|
||||||
* **nft_old_pkg_manage** : If old package(s) should be managed with this role [default : `true`].
|
* **nft_old_pkg_manage** : If old package(s) should be managed with this role [default : `true`].
|
||||||
|
|
|
@ -17,7 +17,7 @@ nft_enabled: true
|
||||||
# ]]]
|
# ]]]
|
||||||
|
|
||||||
# packages
|
# packages
|
||||||
nft_pkg_state: 'installed'
|
nft_pkg_state: 'present'
|
||||||
nft_old_pkg_list: 'iptables'
|
nft_old_pkg_list: 'iptables'
|
||||||
nft_old_pkg_state: 'absent'
|
nft_old_pkg_state: 'absent'
|
||||||
nft_old_pkg_manage: true
|
nft_old_pkg_manage: true
|
||||||
|
|
Loading…
Reference in New Issue