Skip to content

Commit

Permalink
Fix unset logfile paths on EL
Browse files Browse the repository at this point in the history
  • Loading branch information
natefoo committed Oct 4, 2019
1 parent d18c8f9 commit 7c2d2ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tasks/slurmctld.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@
group: "{{ __slurm_group_name }}"
mode: 0755
state: directory
when: slurm_create_dirs and __slurm_config_merged.SlurmctldLogFile
when: slurm_create_dirs and __slurm_config_merged.SlurmctldLogFile != omit
2 changes: 1 addition & 1 deletion tasks/slurmd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
group: "{{ __slurm_group_name }}"
mode: 0755
state: directory
when: slurm_create_dirs and __slurm_config_merged.SlurmdLogFile
when: slurm_create_dirs and __slurm_config_merged.SlurmdLogFile != omit

- name: Include config dir creation tasks
include_tasks: _inc_create_config_dir.yml
Expand Down

0 comments on commit 7c2d2ab

Please sign in to comment.