Make autofs(5) -media map also use "async" and "noatime" for ext2fs(5).

Suggested by:	pfg@
MFC after:	1 month
This commit is contained in:
Edward Tomasz Napierala 2016-09-20 04:33:58 +00:00
parent feba6b4163
commit 554159ec95

View File

@ -38,7 +38,8 @@ print_map_entry() {
_fstype="$1"
_p="$2"
if [ "${_fstype}" = "ntfs" ]; then
case "${_fstype}" in
"ntfs")
if [ -f "/usr/local/bin/ntfs-3g" ]; then
echo "-mountprog=/usr/local/bin/ntfs-3g,fstype=${_fstype},nosuid,noatime :/dev/${_p}"
else
@ -46,11 +47,14 @@ print_map_entry() {
"Cannot mount ${_fstype} formatted device /dev/${_p}: Install sysutils/fusefs-ntfs first"
exit 1
fi
elif [ "${_fstype}" = "msdosfs" -o "${_fstype}" = "ufs" ]; then
;;
"ext2fs" | "msdosfs" | "ufs")
echo "-fstype=${_fstype},nosuid,noatime,async :/dev/${_p}"
else
;;
*)
echo "-fstype=${_fstype},nosuid :/dev/${_p}"
fi
;;
esac
}
# Determine map entry contents for the given key and print out the entry.