We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In most roles if the following variable is set to true:
# Allow artifactory user to create crontab rules artifactory_allow_crontab: false
Then you may face:
FAILED! => {"changed": false, "msg": "Destination /etc/cron.allow does not exist !", "rc": 257}
Because the following task:
- name: Allow using crontab ansible.builtin.lineinfile: path: /etc/cron.allow line: "{{ artifactory_user }}" state: present when: artifactory_allow_crontab
Is missing:
create: true
The text was updated successfully, but these errors were encountered:
@EmptyByte Thanks for raising this issue , Would you mind raising this as a Pull Request, Happy to take this in upcoming releases :)
Sorry, something went wrong.
No branches or pull requests
In most roles if the following variable is set to true:
Then you may face:
Because the following task:
Is missing:
The text was updated successfully, but these errors were encountered: