-
Notifications
You must be signed in to change notification settings - Fork 11
Fix password masking JAVA_HOME and undefined variable error #198
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix password masking JAVA_HOME and undefined variable error #198
Conversation
'roles': item.roles }] }}" | ||
no_log: true | ||
when: | ||
- existing_user is not defined or existing_user | length == 0 or hash_password != existing_user[1] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hash_password is not defined if existing_user is not defined.
Something like this would fix it:
- existing_user is defined and hash_password is defined and hash_password != existing_user[1]
sorry, I had no time to review earlier. |
hi @guidograzioli. Do you know when this will be released? |
Sorry about that, but we had (actually, we have) a problem with github actions breaking CI arbitrarily. I hope to build the downstream collection and upload to hub on thursday at the very latest |
hi @guidograzioli. Thank you. No problem. |
Hello; it is automated but not automatic, we have more CI downstream. However, I've submitted the new release for redhat.amq_broker and should be available shortly |
It should be available by now; redhat.amq_broker 2.2.7 will be the last version in tech preview, starting from 2.2.8 it will be GA! |
hi @guidograzioli, is it stuck somewhere or am I too earger? 👉👈 |
Wait, you cannot see or download 2.2.7 from |
yes I do and it's there. Thank you. |
FYI, my play now runs for a normal timespan. Thank you very much we can roll it out in the higher envirnonments! |
When mask passwords are generated via
artemis mask
command, the configured JDK is not used.Refactor the blocks in the mark_passwords.yml taskfile to guard against undefined vars
Fix #196
Fix #197