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

odd logic on when to use systemd corrected

parent abd35d77
No related branches found
No related tags found
1 merge request!102Slurm correction
......@@ -30,7 +30,7 @@
- name: set use_systemd
set_fact:
use_systemd: True
when: (ansible_distribution == "CentOS" or ansible_distribution == "RedHat") and ( ansible_distribution_major_version == "7") and not munge_binary.stat.exists
when: (ansible_distribution == "CentOS" or ansible_distribution == "RedHat") and ( ansible_distribution_major_version == "7")
- name: copy init script
template: dest=/etc/init.d/munge src=munge.initd.j2 mode=755
......
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