Skip to content
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: user group of the azure devops user for Linux and Darwin #56

Merged
merged 3 commits into from
Jan 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion tasks/Darwin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
name: "{{ az_devops_agent_user }}"
comment: "Azure DevOps Agent"
shell: /bin/zsh
group: admin
group: "{{ az_devops_agent_group }}"
become: true

- name: Create directories
Expand Down Expand Up @@ -103,6 +103,7 @@
- name: Uninstall agent service
command: ./svc.sh uninstall
become: true
become_user: "{{ az_devops_agent_user }}"
args:
chdir: "{{ az_devops_agent_folder }}"
removes: "{{ az_devops_agent_folder }}/runsvc.sh"
Expand Down
1 change: 1 addition & 0 deletions tasks/Linux.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
- name: Add an agent user
user:
name: "{{ az_devops_agent_user }}"
group: "{{ az_devops_agent_group }}"
comment: "Azure DevOps Agent"
shell: /bin/bash
become: true
Expand Down