Skip to content

Commit ede7cb3

Browse files
authored
Merge pull request #659 from stackhpc/hpctests-group
Fix creation of hpctests directory
2 parents 9e65602 + 13fc819 commit ede7cb3

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

ansible/roles/hpctests/defaults/main.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
hpctests_user: "{{ ansible_user }}"
3+
hpctests_group: "{{ ansible_user }}"
34
hpctests_rootdir: "/home/{{ hpctests_user }}/hpctests"
45
hpctests_pre_cmd: ''
56
hpctests_pingmatrix_modules: [gnu12 openmpi4]

ansible/roles/hpctests/tasks/setup.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
path: "{{ hpctests_rootdir }}"
2727
state: directory
2828
owner: "{{ hpctests_user }}"
29-
group: "{{ hpctests_user }}"
29+
group: "{{ hpctests_group }}"
3030

3131
- name: Set fact for UCX_NET_DEVICES
3232
set_fact:

0 commit comments

Comments
 (0)