-
Notifications
You must be signed in to change notification settings - Fork 404
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
Added package tag #1459
base: 7.1.x
Are you sure you want to change the base?
Added package tag #1459
Conversation
|
@@ -30,6 +30,9 @@ | |||
ansible_become: "{{ ansible_become_localhost }}" | |||
|
|||
- name: Apt update | |||
tags: | |||
- certificate_authority |
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.
this task is not related to certificate. Package tag looks okay
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.
the tasks that have certificate_authority tag in them are mostly using openssl. So if those tasks need to be run separately using --tags certificate_authority then running this task previous to them would ensure when they are run they dont give the error command openssl not found.
@@ -69,7 +72,9 @@ | |||
- '!all' | |||
|
|||
- name: Install OpenSSL and Rsync - RedHat | |||
tags: certificate_authority | |||
tags: | |||
- certificate_authority |
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.
same as above.
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.
why is this PR raised against 7.1? what about the previous versions? Have we checked thoroughly that tags: package
is not required in any other task?
The feature to support non root user was introduced in 7.1.x. Hence to fix issue with non root deployment this Pr is raised against 7.1.x |
Description
Added package tag