Skip to content

Commit 76497fc

Browse files
committed
make sssd and mysql consistent with others; don't run install during site.yml, by default
1 parent d79f3ea commit 76497fc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ansible/iam.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,4 @@
5757
- name: Configure sssd
5858
ansible.builtin.include_role:
5959
name: sssd
60-
tasks_from: "{{ 'install.yml' if appliances_mode == 'build' else 'main.yml' }}"
60+
tasks_from: "{{ {'build':'install.yml', 'configure':'configure.yml'}[appliances_mode] | default('main.yml') }}"

ansible/slurm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
tasks:
88
- include_role:
99
name: mysql
10-
tasks_from: "{{ 'install.yml' if appliances_mode == 'build' else 'main.yml' }}"
10+
tasks_from: "{{ {'build':'install.yml', 'configure':'configure.yml'}[appliances_mode] | default('main.yml') }}"
1111

1212
- name: Setup slurm-driven rebuild
1313
hosts: rebuild:!builder

0 commit comments

Comments
 (0)