File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 18
18
- include_tasks : build.yml
19
19
20
20
- name : Copy custom Slurm to storage
21
- hosts : control # doens't matter, just needs to be one
21
+ hosts : control
22
22
become : yes
23
23
gather_facts : no
24
24
tags : slurm
25
25
tasks :
26
26
- name : Ensure shared slurm directory exists
27
27
file :
28
28
state : directory
29
- path : " {{ slurm_build_dir }}"
29
+ path : " {{ slurm_build_dir }}" # NB this will be exported by nfs filesystems.yml
30
30
owner : root
31
31
group : root
32
32
mode : u=rwX,go=rX
39
39
group : root
40
40
mode : u=rwx,go=rx
41
41
loop :
42
- # - src: "{{ slurm_local_build_dir }}/sbin/"
43
- # dest: "{{ openhpc_sbin_dir }}"
42
+ - src : " {{ slurm_local_build_dir }}/sbin/"
43
+ dest : " {{ openhpc_sbin_dir }}"
44
44
- src : " {{ slurm_local_build_dir }}/lib/"
45
45
dest : " {{ openhpc_lib_dir }}"
46
- # - src: "{{ slurm_local_build_dir }}/bin/"
47
- # dest: "{{ openhpc_bin_dir }}"
46
+ - src : " {{ slurm_local_build_dir }}/bin/"
47
+ dest : " {{ openhpc_bin_dir }}"
48
48
vars :
49
49
slurm_local_build_dir : " {{ appliances_environment_root }}/slurmbuild/{{ slurm_build_version }}"
50
50
You can’t perform that action at this time.
0 commit comments