File tree Expand file tree Collapse file tree 2 files changed +15
-3
lines changed Expand file tree Collapse file tree 2 files changed +15
-3
lines changed Original file line number Diff line number Diff line change 1414 mode : 0775
1515
1616- name : Mount NFS with options
17- ansible_remote_tmp : /tmp
1817 mount :
1918 path : " {{ local_path }}"
2019 src : " {{ export_host }}:{{ export_path | trim() }}"
2120 fstype : nfs
2221 opts : " {{ options }}"
2322 state : mounted
2423 when : options!=""
24+ retries : 5
25+ delay : 1
26+ register : result
27+ until : result is not failed
28+
2529- name : Mount NFS without options
26- ansible_remote_tmp : /tmp
2730 mount :
2831 path : " {{ local_path }}"
2932 src : " {{ export_host }}:{{ export_path | trim() }}"
3033 fstype : nfs
3134 state : mounted
3235 when : options==""
36+ retries : 5
37+ delay : 1
38+ register : result
39+ until : result is not failed
3340
3441- name : make sure the permissions of the share directory are right
3542 become : true
3845 state : directory
3946 owner : ubuntu
4047 group : " {{privilege_group_name}}"
41- mode : 0775
48+ mode : 0775
Original file line number Diff line number Diff line change 112112 /usr/bin/python3.10 -m pip install wheel
113113 when : ansible_os_family == "Debian"
114114
115+ - name : Upgrade Packaging Library
116+ shell : |
117+ pip install --upgrade packaging==25.0
118+ when : ansible_os_family == "Debian"
119+
115120- name : Build slurm sdk python wheel
116121 shell : |
117122 /usr/bin/python3.10 setup.py bdist_wheel
You can’t perform that action at this time.
0 commit comments