We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b2799c commit 994b2c9Copy full SHA for 994b2c9
contrib/initramfs/scripts/zfs
@@ -935,11 +935,13 @@ mountroot()
935
936
# Go through the complete list (recursively) of all filesystems below
937
# the real root dataset
938
- filesystems=$("${ZFS}" list -oname -tfilesystem -H -r "${ZFS_BOOTFS}")
+ filesystems="$("${ZFS}" list -oname -tfilesystem -H -r "${ZFS_BOOTFS}")"
939
+ OLD_IFS="$IFS" ; IFS=" " # tab
940
for fs in $filesystems $ZFS_INITRD_ADDITIONAL_DATASETS
941
do
- mount_fs "$fs"
942
+ IFS="$OLD_IFS" mount_fs "$fs"
943
done
944
+ IFS="$OLD_IFS"
945
946
touch /run/zfs_unlock_complete
947
if [ -e /run/zfs_unlock_complete_notify ]; then
0 commit comments