Skip to content

Commit 26b12d6

Browse files
committed
Closes #102
1 parent 387e7f7 commit 26b12d6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tasks/configure.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@
3232

3333
- name: Create log if missing
3434
file: state=touch dest={{ mongodb_systemlog_path }} owner={{ mongodb_user }} group={{mongodb_user}} mode=0755
35-
when: ( logfile_stat is defined
36-
and not logfile_stat.stat.exists
37-
and mongodb_systemlog_destination == "file" )
35+
when: ( mongodb_systemlog_destination == "file"
36+
and logfile_stat is defined
37+
and not logfile_stat.stat.exists )
3838

3939
- name: Ensure dbpath directory
4040
file:

0 commit comments

Comments
 (0)