Skip to content
Snippets Groups Projects
Commit 601720fc authored by Chris Hines's avatar Chris Hines
Browse files

Merge branch 'repos' into 'master'

Repos



See merge request !82
parents 7308b61f f97b5c36
No related branches found
No related tags found
1 merge request!82Repos
......@@ -24,6 +24,7 @@
- CentOS-OpenStack-kilo.repo
- epel.repo
- monashhpc_mellanox.repo
- epel-testing.repo
when: ansible_os_family == 'RedHat' and ansible_distribution_major_version == "7"
- name: add our repos
......
......@@ -61,6 +61,10 @@
sudo: true
when: slurmlogdir is defined
- name: make sure slurm conf dir exists
file: dest={{ slurm_dir }}/etc state=directory
sudo: true
- name: create greps directory
file: path={{ slurm_dir }}/etc/gres state=directory owner=slurm group=slurm mode=755
sudo: true
......@@ -124,6 +128,21 @@
- include: installSlurmFromSource.yml
- name: make sure slurm conf dir exists
file: dest={{ slurm_dir }}/etc state=directory
sudo: true
- name: create greps directory
file: path={{ slurm_dir }}/etc/gres state=directory owner=slurm group=slurm mode=755
sudo: true
- name: check slurm generic resource
shell: "{{ slurm_gres_check }}"
register: slurm_generic_resource
ignore_errors: true
when: slurm_gres_check is defined
- name: Gres - Test for Nvidia devices
script: ./nvidia-probe.py
register: probeOutput
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment