aboutsummaryrefslogtreecommitdiff
path: root/scripts/fixrmtab
blob: 33b7bcfdb6ce7126c910488433be93937854abe2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/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