Skip to content

Commit 91e9294

Browse files
authored
Fix typo in mounts role causing a missing directory to never be created (#997)
the typo was masked by default(true)
1 parent 78df29b commit 91e9294

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ansible/roles/mounts/tasks/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
loop_var: stat_result
2020
# Only run when mountpoint is missing, to avoid resetting owner/mode on mounted directories
2121
# Also has to cope with .stat missing when enabled: false
22-
when: not (stat_results.stat.exists | default(true))
22+
when: not (stat_result.stat.exists | default(true))
2323

2424
- name: Ensure tmp.mount mask status is correct
2525
# RL8-specific fix; otherwise rootfs comes up read-only after a reboot!

0 commit comments

Comments
 (0)