diff options
-rw-r--r-- | packages/altboot/files/altboot.func | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/altboot/files/altboot.func b/packages/altboot/files/altboot.func index 612d875a9a..5651ef9f9d 100644 --- a/packages/altboot/files/altboot.func +++ b/packages/altboot/files/altboot.func @@ -374,7 +374,7 @@ mount_home(){ home_fstab="`grep "/home " /etc/fstab`" home_dev="`echo "$home_fstab" | awk '{print $1}'`" home_fs="`echo "$home_fstab" | awk '{print $3}'`" - home_options="`echo "$home_fstan" | awk '{print $4}'`" + home_options="`echo "$home_fstab" | awk '{print $4}'`" mount -t "$home_fs" -o $home_options "$home_dev" /home fi |