mirror of
https://bitbucket.org/atlassian/dc-deployments-automation.git
synced 2025-12-13 08:23:06 -06:00
try casting env var to bool before falling back to default(true)
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
|
||||
# Mostly for molecule testing, as skip-tags doesn't work with handlers.
|
||||
atl_startup_enable: true
|
||||
atl_startup_restart: "{{ lookup('env', 'ATL_STARTUP_RESTART') or true | bool }}"
|
||||
atl_startup_restart: "{{ lookup('env', 'ATL_STARTUP_RESTART') | bool | default(true) }}"
|
||||
|
||||
atl_startup_script_map:
|
||||
jira: "bin/start-jira.sh"
|
||||
|
||||
Reference in New Issue
Block a user