--- ubiquity.orig/d-i/source/partman-target/finish.d/fstab_hd_entries 2012-01-27 14:45:51.114138675 +0100 +++ ubiquity/d-i/source/partman-target/finish.d/fstab_hd_entries 2012-01-27 14:51:50.571921117 +0100 @@ -11,9 +11,18 @@ # dev, mountpoint, type, options, dump, pass addfstab () { + lliurex_options="$(escape $4)" + lliurex_type="$(escape $3)" + if [ "$lliurex_type" = "ext4" ]; then + if [ "$lliurex_options" != "" ]; then + lliurex_options="acl,$lliurex_options" + else + lliurex_options="acl" + fi + fi printf "%-15s %-15s %-7s %-15s %-7s %s\n" \ "$(escape "$1")" "$(escape "$2")" \ - "$(escape "$3")" "$(escape "$4")" \ + "$(escape "$3")" "$lliurex_options" \ "$5" "$6" }