freebsd-dev/contrib/amd/scripts/fixrmtab.in
David E. O'Brien ad8bcc147f Virgin import of AMD (am-utils) v6.1.5
Sponsored by: Juniper Networks
2007-12-05 15:48:03 +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.x
# 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