add mk22-lab-dvr
diff --git a/tcp_tests/fixtures/salt_fixtures.py b/tcp_tests/fixtures/salt_fixtures.py
index 977b38d..3b9c52b 100644
--- a/tcp_tests/fixtures/salt_fixtures.py
+++ b/tcp_tests/fixtures/salt_fixtures.py
@@ -19,6 +19,7 @@
 
 from tcp_tests import logger
 from tcp_tests.helpers import ext
+from tcp_tests.helpers import utils
 from tcp_tests import settings
 from tcp_tests.managers import saltmanager
 
@@ -66,9 +67,8 @@
     """
     # Create Salt cluster
     if config.salt.salt_master_host == '0.0.0.0':
-        with underlay.yaml_editor(
-                config.salt_deploy.salt_steps_path) as commands:
-            salt_actions.install(commands.content)
+        commands = utils.read_template(config.salt_deploy.salt_steps_path)
+        salt_actions.install(commands)
         hardware.create_snapshot(ext.SNAPSHOT.salt_deployed)
 
     else: