Skip to content

Commit

Permalink
Merge pull request #56 from askalski85/fix/48
Browse files Browse the repository at this point in the history
fix: user group of the azure devops user for Linux and Darwin
  • Loading branch information
yohanb committed Jan 26, 2022
2 parents 320f6d3 + c664228 commit ac87bde
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
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

0 comments on commit ac87bde

Please sign in to comment.