aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Tomasz Napierala <trasz@FreeBSD.org>2016-09-20 04:33:58 +0000
committerEdward Tomasz Napierala <trasz@FreeBSD.org>2016-09-20 04:33:58 +0000
commit554159ec95ea5f2e44f02dc40aa65aaee6456930 (patch)
tree981d8eb462082587c5386dbd30665ac5aa125993
parentfeba6b4163db62425ddd3567455d6c4a234c1f46 (diff)
downloadsrc-554159ec95ea5f2e44f02dc40aa65aaee6456930.tar.gz
src-554159ec95ea5f2e44f02dc40aa65aaee6456930.zip
Make autofs(5) -media map also use "async" and "noatime" for ext2fs(5).
Suggested by: pfg@ MFC after: 1 month
Notes
Notes: svn path=/head/; revision=306009
-rwxr-xr-xetc/autofs/special_media12
1 files changed, 8 insertions, 4 deletions
diff --git a/etc/autofs/special_media b/etc/autofs/special_media
index c0fe587b5ad1..86824b62f10e 100755
--- a/etc/autofs/special_media
+++ b/etc/autofs/special_media
@@ -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.