Use to_nice_json to manage packages list
This commit is contained in:
parent
a77f7a8088
commit
baeda9ecfe
|
@ -1,9 +1,10 @@
|
||||||
## v1.X
|
## v1.0.1
|
||||||
|
|
||||||
### Fix
|
### Fix
|
||||||
* Set empty dependencies line to fix Galaxy warning.
|
* Set empty dependencies line to fix Galaxy warning.
|
||||||
|
* Use to_nice_json to manage packages list.
|
||||||
|
|
||||||
## v1.0
|
## v1.0.0
|
||||||
|
|
||||||
### Features
|
### Features
|
||||||
* Install Arpwatch.
|
* Install Arpwatch.
|
||||||
|
|
|
@ -7,4 +7,3 @@
|
||||||
(arpwatch__service_manage | d(True) | bool))
|
(arpwatch__service_manage | d(True) | bool))
|
||||||
else "stopped" }}'
|
else "stopped" }}'
|
||||||
enabled: '{{ arpwatch__service_manage | d(True) | bool }}'
|
enabled: '{{ arpwatch__service_manage | d(True) | bool }}'
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
state: 'present'
|
state: 'present'
|
||||||
install_recommends: False
|
install_recommends: False
|
||||||
with_flattened:
|
with_flattened:
|
||||||
- '{{ arpwatch__base_packages }}'
|
- '{{ arpwatch__base_packages | to_nice_json }}'
|
||||||
when: arpwatch__enabled|bool
|
when: arpwatch__enabled|bool
|
||||||
|
|
||||||
# Manage configuration file [[[1
|
# Manage configuration file [[[1
|
||||||
|
@ -47,4 +47,3 @@
|
||||||
else "stopped" }}'
|
else "stopped" }}'
|
||||||
enabled: '{{ ((arpwatch__enabled | d(True) | bool) and
|
enabled: '{{ ((arpwatch__enabled | d(True) | bool) and
|
||||||
(arpwatch__service_manage | d(True) | bool)) }}'
|
(arpwatch__service_manage | d(True) | bool)) }}'
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue