fix order for storage: first create lv and next mount this lv
diff --git a/linux/storage/init.sls b/linux/storage/init.sls
index 19d2ade..a5b78eb 100644
--- a/linux/storage/init.sls
+++ b/linux/storage/init.sls
@@ -4,15 +4,15 @@
{%- if storage.loopback|length > 0 %}
- linux.storage.loopback
{%- endif %}
+{%- if storage.lvm|length > 0 %}
+- linux.storage.lvm
+{%- endif %}
{%- if storage.mount|length > 0 %}
- linux.storage.mount
{%- endif %}
{%- if storage.swap|length > 0 %}
- linux.storage.swap
{%- endif %}
-{%- if storage.lvm|length > 0 %}
-- linux.storage.lvm
-{%- endif %}
{%- if storage.multipath.enabled %}
- linux.storage.multipath
{%- endif %}