Turn nft_old_pkg_list into a list as expected
This commit is contained in:
parent
dddc46282d
commit
5dee91df3e
|
@ -10,6 +10,7 @@
|
|||
### Fix
|
||||
* Fix deprecation warning with ansible 2.7: Invoking "apt" only once while
|
||||
using a loop via squash_actions is deprecated.
|
||||
* Turn nft_old_pkg_list into a list.
|
||||
|
||||
## v1.5.0
|
||||
|
||||
|
|
|
@ -29,7 +29,8 @@ nft_pkg_state: 'present'
|
|||
#
|
||||
# List of old Iptables packages to remove to avoid duplicate firewall.
|
||||
#
|
||||
nft_old_pkg_list: 'iptables'
|
||||
nft_old_pkg_list:
|
||||
- 'iptables'
|
||||
# ]]]
|
||||
# .. envvar:: nft_old_pkg_state [[[
|
||||
#
|
||||
|
|
Loading…
Reference in New Issue