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

Merge branch 'slurmdbconf' into 'master'

Changing copy modules

See merge request hpc-team/ansible_cluster_in_a_box!224
parents f4453d45 e66ca350
No related branches found
No related tags found
1 merge request!224Changing copy modules
......@@ -22,19 +22,23 @@
sudo: true
- name: install slurmdb.conf
copy: src=files/slurmdbd.conf dest={{ slurm_dir }}/etc/slurmdbd.conf
owner: slurm
group: slurm
mode: u+rw,g-wx,o-rwx
copy:
src: files/slurmdbd.conf
dest: "{{ slurm_dir }}/etc/slurmdbd.conf"
owner: slurm
group: slurm
mode: u+rw,g-wx,o-rwx
sudo: true
when: slurm_dir is defined
- name: install slurmdbd.conf
copy: src=slurmdbd.conf dest=/etc/slurm/slurmdbd.conf
mode: u+rw,g-wx,o-rwx
owner: slurm
group: slurm
copy:
src: slurmdbd.conf
dest: /etc/slurm/slurmdbd.conf
owner: slurm
group: slurm
mode: u+rw,g-wx,o-rwx
sudo: true
when: slurm_dir is not defined
......
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