Skip to content

Commit 9b88a41

Browse files
committed
Merge branch '2.10.5' into 2.10.5_ds_prompt_for_resize
2 parents cbd27c8 + 79c3cdb commit 9b88a41

File tree

51 files changed

+110
-110
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+110
-110
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
- include: el.yml
1+
- include_tasks: el.yml
22
when: ansible_os_family == 'RedHat'
3-
- include: ubuntu.yml
3+
- include_tasks: ubuntu.yml
44
when: ansible_os_family == 'Debian'
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
- include: el.yml
1+
- include_tasks: el.yml
22
when: ansible_os_family == 'RedHat' and ansible_distribution == 'OracleLinux'
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
- include: el.yml
1+
- include_tasks: el.yml
22
when: ansible_os_family == 'RedHat' and ansible_distribution == 'OracleLinux'
3-
- include: ubuntu.yml
3+
- include_tasks: ubuntu.yml
44
when: ansible_os_family == 'Debian'
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
- include: el7.yml
1+
- include_tasks: el7.yml
22
when: ansible_os_family == 'RedHat' and ansible_distribution_major_version == '7'
33

4-
- include: el8.yml
4+
- include_tasks: el8.yml
55
when: ansible_os_family == 'RedHat' and ansible_distribution_major_version == '8'
66

7-
- include: debian.yml
7+
- include_tasks: debian.yml
88
when: ansible_distribution == 'Ubuntu'
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
- include: el.yml
1+
- include_tasks: el.yml
22
when: ansible_os_family == 'RedHat'
3-
- include: ubuntu.yml
3+
- include_tasks: ubuntu.yml
44
when: ansible_os_family == 'Debian'
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
- include: common.yml
1+
- include_tasks: common.yml
22

3-
- include: slurm-rack-aware.yml
3+
- include_tasks: slurm-rack-aware.yml
44
when: rack_aware | bool
55

6-
- include: slurm.yml
6+
- include_tasks: slurm.yml
77
when: not rack_aware | bool
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
22

3-
- include: oraclelinux.yml
3+
- include_tasks: oraclelinux.yml
44
when: ansible_os_family == 'RedHat' and ansible_distribution == 'OracleLinux'
55

6-
#- include: centos-7.yml
6+
#- include_tasks: centos-7.yml
77
# when: ansible_os_family == 'RedHat' and ansible_distribution == 'CentOS' and ansible_distribution_major_version == '7'
88

9-
- include: ubuntu.yml
9+
- include_tasks: ubuntu.yml
1010
when: ansible_os_family == 'Debian'
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
- include: common.yml
1+
- include_tasks: common.yml
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
- include: el.yml
1+
- include_tasks: el.yml
22
when: ansible_os_family == 'RedHat'
3-
- include: ubuntu.yml
3+
- include_tasks: ubuntu.yml
44
when: ansible_os_family == 'Debian'

playbooks/roles/fix_broken/tasks/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
# tasks file for fix_broken
33

44
# to resolve error for not able to install nfs-kernel-server. seeing the same error for compute nodes while installing other packages. so adding this to run on all compute hosts the first time itself.
5-
- include: ubuntu.yml
5+
- include_tasks: ubuntu.yml
66
when: ansible_distribution == 'Ubuntu'

0 commit comments

Comments
 (0)