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

delay the starting of munge until after log directories etc exist with correct ownership

parent 210f216a
No related branches found
No related tags found
No related merge requests found
...@@ -26,8 +26,3 @@ ...@@ -26,8 +26,3 @@
- name: copy init script - name: copy init script
template: dest=/etc/init.d/munge src=munge.initd.j2 mode=755 template: dest=/etc/init.d/munge src=munge.initd.j2 mode=755
sudo: true sudo: true
- name: start on boot
shell: update-rc.d munge defaults
sudo: true
when: ansible_distribution == "Ubuntu"
...@@ -86,6 +86,14 @@ ...@@ -86,6 +86,14 @@
sudo: true sudo: true
notify: restart munge notify: restart munge
- name: enable munge on boot
service: name=munge enabled=yes
sudo: true
- name: start munge
service: name=munge state=started
sudo: true
- include: installSlurmFromSource.yml - include: installSlurmFromSource.yml
- name: install slurm.conf - name: install slurm.conf
......
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