diff options
Diffstat (limited to 'helpers/lh_chroot_sysfs')
-rwxr-xr-x | helpers/lh_chroot_sysfs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/helpers/lh_chroot_sysfs b/helpers/lh_chroot_sysfs index 539a7937d..5cf50c3cf 100755 --- a/helpers/lh_chroot_sysfs +++ b/helpers/lh_chroot_sysfs @@ -57,7 +57,7 @@ case "${1}" in fi # Mounting /sys - mount sysfs-live -t sysfs chroot/sys + ${LH_ROOT_COMMAND} mount sysfs-live -t sysfs chroot/sys # Creating stage file Create_stagefile .stage/chroot_sysfs @@ -72,7 +72,7 @@ case "${1}" in # Unmounting /sys #fuser -km chroot/sys - umount chroot/sys > /dev/null 2>&1 + ${LH_ROOT_COMMAND} umount chroot/sys > /dev/null 2>&1 # Removing stage file rm -f .stage/chroot_sysfs |