30 lines
459 B
Bash
30 lines
459 B
Bash
#!/bin/sh
|
|
#
|
|
# $NetBSD: special_noauto,v 1.1 2018/01/09 03:31:14 christos Exp $
|
|
#
|
|
|
|
print_available() {
|
|
sed 's/#.*//' /etc/fstab | awk '$4 ~ /noauto/ { print $2 }'
|
|
}
|
|
|
|
print_one() {
|
|
local _mntpoint
|
|
|
|
_mntpoint="${1%/}"
|
|
|
|
sed 's/#.*//' /etc/fstab | awk '
|
|
$2 == "'"${_mntpoint}"'" && $4 ~ /noauto/ {
|
|
if ($1 ~ /:/) { dev=$1 } else { dev=":"$1 }
|
|
print "-fstype=" $3 "," $4, dev
|
|
}'
|
|
}
|
|
|
|
if [ $# -eq 0 ]; then
|
|
print_available
|
|
exit 0
|
|
fi
|
|
|
|
print_one "$1"
|
|
exit 0
|
|
|