2
0
Fork 0

Don't need to omit an empty URL with "when" state

This commit is contained in:
Jeremy Gardais 2018-09-17 17:53:49 +02:00
parent 2be51c2c7b
commit 248cca2f77
Signed by: jegardai
GPG Key ID: E759BAA22501AF32
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@
# Manage agent package [[[1
- name: Ensure fusioninventory-agent package from URL
apt:
deb: '{{ fusioninventory__agent_package_url | d(omit) }}'
deb: '{{ fusioninventory__agent_package_url }}'
when: fusioninventory__agent_package_url != ""
and fusioninventory__agent_deploy_state == "present"