diff options
author | Ryan Phillips <rphillips@gentoo.org> | 2002-06-21 23:11:19 +0000 |
---|---|---|
committer | Ryan Phillips <rphillips@gentoo.org> | 2002-06-21 23:11:19 +0000 |
commit | 372075aa1f29c4a10929b296acc78c398cd7c484 (patch) | |
tree | 7b4d3a920bef52c241b83f25f1a68fa4c8efcc99 /net-fs | |
parent | new package. fixes #3911 (diff) | |
download | historical-372075aa1f29c4a10929b296acc78c398cd7c484.tar.gz historical-372075aa1f29c4a10929b296acc78c398cd7c484.tar.bz2 historical-372075aa1f29c4a10929b296acc78c398cd7c484.zip |
Fixed regex. Fixes #3931
Diffstat (limited to 'net-fs')
-rw-r--r-- | net-fs/autofs/ChangeLog | 6 | ||||
-rw-r--r-- | net-fs/autofs/files/autofs.rc6 | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/net-fs/autofs/ChangeLog b/net-fs/autofs/ChangeLog index 65d4c4cdf58a..9ec32efacd28 100644 --- a/net-fs/autofs/ChangeLog +++ b/net-fs/autofs/ChangeLog @@ -1,6 +1,6 @@ # ChangeLog for net-fs/autofs # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/ChangeLog,v 1.6 2002/04/30 22:13:33 sandymac Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/ChangeLog,v 1.7 2002/06/21 23:11:19 rphillips Exp $ 30 Apr 2002; William McArthur <sandymac@gentoo.org> autofs-3.1.7-r3.ebuild : @@ -8,6 +8,10 @@ *autfofs-3.1.7-r3 (16 Apr 2002) + 21 Jun 2002; Ryan Phillips <rphillips@gentoo.org> files/autofs.rc6 : + + added a /g to the pidfile variable + 16 Apr 2002; Seemant Kulleen <seemant@gentoo.org> autofs-3.1.7-r3.ebuild files/digest-autofs-3.1.7-r3 : diff --git a/net-fs/autofs/files/autofs.rc6 b/net-fs/autofs/files/autofs.rc6 index f2cadae8f759..acd50b58ad1c 100644 --- a/net-fs/autofs/files/autofs.rc6 +++ b/net-fs/autofs/files/autofs.rc6 @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/files/autofs.rc6,v 1.2 2002/02/02 05:35:05 woodchip Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/files/autofs.rc6,v 1.3 2002/06/21 23:11:19 rphillips Exp $ # rc file for automount using a Sun-style "master map". # We first look for a local /etc/auto.master, then a YP @@ -83,7 +83,7 @@ start() { fi echo -n " $mnt" - pidfile=/var/run/autofs`echo $mnt | sed 's/\//./'`.pid + pidfile=/var/run/autofs`echo $mnt | sed 's/\//./g'`.pid start-stop-daemon --start --pidfile $pidfile --quiet \ --exec /usr/sbin/automount -- $timeout $mnt $rest # |