summaryrefslogtreecommitdiffstats
path: root/modules.d/dnbd3-rootfs/hooks/set-dracut-environment-variables.sh
diff options
context:
space:
mode:
Diffstat (limited to 'modules.d/dnbd3-rootfs/hooks/set-dracut-environment-variables.sh')
-rwxr-xr-xmodules.d/dnbd3-rootfs/hooks/set-dracut-environment-variables.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/modules.d/dnbd3-rootfs/hooks/set-dracut-environment-variables.sh b/modules.d/dnbd3-rootfs/hooks/set-dracut-environment-variables.sh
new file mode 100755
index 00000000..ad80349b
--- /dev/null
+++ b/modules.d/dnbd3-rootfs/hooks/set-dracut-environment-variables.sh
@@ -0,0 +1,16 @@
+#!/usr/bin/env bash
+# -*- coding: utf-8 -*-
+
+# Set rootok and root as dracut expects them to be set by the module preparing
+# the root filesystem.
+
+# Tell dracut that we parsed the command line and all needed parameters are
+# available.
+rootok=1
+# Tell dracut where the final root fs will be located.
+root=block:/dev/devicemapper/root
+
+# region vim modline
+# vim: set tabstop=4 shiftwidth=4 expandtab:
+# vim: foldmethod=marker foldmarker=region,endregion:
+# endregion