Skip to content

Commit 071ebcd

Browse files
Merge pull request #61 from oracle-quickstart/2.11.2
2.11.2.1 release
2 parents 633cd28 + 678587f commit 071ebcd

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

playbooks/roles/nfs-client/tasks/ubuntu.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,22 +14,29 @@
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
@@ -38,4 +45,4 @@
3845
state: directory
3946
owner: ubuntu
4047
group: "{{privilege_group_name}}"
41-
mode: 0775
48+
mode: 0775

playbooks/roles/slurm_rest_api/tasks/slurm_sdk.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,11 @@
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

0 commit comments

Comments
 (0)