From cfe5b10b1af376207abe7ff2642b2ac3f20f42d8 Mon Sep 17 00:00:00 2001 From: Beth Parker Date: Tue, 2 Jul 2019 13:05:49 -0500 Subject: [PATCH] fixed issue w/ multiple ext4 mounts --- states/systems/core/mount/init.sls | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/states/systems/core/mount/init.sls b/states/systems/core/mount/init.sls index 1ebf95c..639269f 100644 --- a/states/systems/core/mount/init.sls +++ b/states/systems/core/mount/init.sls @@ -2,7 +2,7 @@ {%- if pillar['mount']['ext4'] is defined -%} {%- for mount in pillar['mount']['ext4'] -%} - {%- set device=pillar['mount']['ext4'][mount]['device'] -%} + {% set device=pillar['mount']['ext4'][mount]['device'] %} {{ mount }}: mount.mounted: - device: {{ device }}