You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 30, 2021. It is now read-only.
I'm curious why this is included: module.set_group_if_different(config_file, user, False)
In the next line the file permissions are set to 600, so the group of the file is irrelevant. Having this included causes this to appear to fail on systems that don't have a corresponding group for each user (like mac os x).
I say it "appears to fail" because since the config file is already written the end result of the task is actually fine, but ansible exits with failed and of course the rest of a playbook might not complete.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I'm curious why this is included:
module.set_group_if_different(config_file, user, False)
In the next line the file permissions are set to 600, so the group of the file is irrelevant. Having this included causes this to appear to fail on systems that don't have a corresponding group for each user (like mac os x).
I say it "appears to fail" because since the config file is already written the end result of the task is actually fine, but ansible exits with failed and of course the rest of a playbook might not complete.
The text was updated successfully, but these errors were encountered: