Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
LQDN Adminsys
piops-roles
sso-lqdn
Commits
7b67d954
Commit
7b67d954
authored
May 11, 2021
by
nono
💻
Browse files
Fixed typo ( see
https://medium.com/opsops/wft-bool-filter-in-ansible-e7e2fd7a148f
)
parent
395ee36a
Changes
1
Hide whitespace changes
Inline
Side-by-side
tasks/install-service.yml
View file @
7b67d954
...
...
@@ -4,6 +4,7 @@
stat
:
path
:
"
{{
keycloak_jboss_home
}}"
register
:
existing_deploy
debug
:
-
block
:
-
name
:
Stopping the old keycloak service
...
...
@@ -16,7 +17,7 @@
file
:
path
:
"
{{
keycloak_jboss_home
}}"
state
:
absent
when
:
existing_deploy.stat.exists and keycloak_force_install | bool
when
:
(
existing_deploy.stat.exists and keycloak_force_install
)
| bool
-
name
:
Checking for an existing deployment after possible forced removal
stat
:
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment