NetBSD/dist/am-utils/scripts/fixrmtab.in
dogcow fda6698809 Import of am-utils-6.0.3 virgin source, with the following changes:
"$Id: blah$" => "Id: blah" (as well as for $Header:$) for all files
 "$NetBSD: $" added to the top of all .c and .h files
2000-06-07 00:52:18 +00:00

25 lines
404 B
Bash
Executable File

#!/bin/sh
#
# Invalidate /etc/rmtab entries for hosts named.
# Restart mountd for changes to take effect.
#
# usage: fixrmtab host1 host2 ...
#
# Package: am-utils-6.0
# Author: Andreas Stolcke <stolcke@icsi.berkeley.edu>
#set -x
RMTAB=/etc/rmtab
TMP=/tmp/rmtab.$$
if [ ! -f /etc/rmtab ]; then
exit 0
fi
for host in $*
do
sed -e '/^'$host':/s/^./#/' $RMTAB > $TMP && cp $TMP $RMTAB
done
rm -f $TMP