diff options
Diffstat (limited to 'dracut/90zfs/mount-zfs.sh')
-rwxr-xr-x | dracut/90zfs/mount-zfs.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dracut/90zfs/mount-zfs.sh b/dracut/90zfs/mount-zfs.sh index 9c753d9e4..47d683331 100755 --- a/dracut/90zfs/mount-zfs.sh +++ b/dracut/90zfs/mount-zfs.sh @@ -9,7 +9,7 @@ if [ "$rootfs" = "zfs" ]; then mount -o zfsutil -t "$rootfs" "$zfsrootfs" "$NEWROOT" if [ "$?" = "0" ] then - ROOTFS_MOUNTED=yes + ROOTFS_MOUNTED=yes else mount -t "$rootfs" "$zfsrootfs" "$NEWROOT" && ROOTFS_MOUNTED=yes fi |