run linux.storage before osd installation

Change-Id: I866547847ed84cc7d520ea101ac3d3cd51605870
diff --git a/src/com/mirantis/mk/Orchestrate.groovy b/src/com/mirantis/mk/Orchestrate.groovy
index 2457ad9..5635569 100644
--- a/src/com/mirantis/mk/Orchestrate.groovy
+++ b/src/com/mirantis/mk/Orchestrate.groovy
@@ -642,6 +642,9 @@
 def installCephOsd(master, target='I@ceph:osd') {
     def salt = new com.mirantis.mk.Salt()
 
+    // Prapare filesystem on OSD drives
+    salt.enforceState(master, target, 'linux.storage', true)
+
     // install Ceph OSDs
     salt.enforceState(master, target, 'ceph.osd', true)
 }