diff options
author | Brad Teaford Cowan <bcowan@gentoo.org> | 2003-01-13 04:28:23 +0000 |
---|---|---|
committer | Brad Teaford Cowan <bcowan@gentoo.org> | 2003-01-13 04:28:23 +0000 |
commit | 35aadd24df9eb0d6cb6e56cd4c8d77cee9be04a6 (patch) | |
tree | ffd1eec9d69528f1c7e0be394b8f4c71369ae809 /net-fs | |
parent | acknowledgement (diff) | |
download | historical-35aadd24df9eb0d6cb6e56cd4c8d77cee9be04a6.tar.gz historical-35aadd24df9eb0d6cb6e56cd4c8d77cee9be04a6.tar.bz2 historical-35aadd24df9eb0d6cb6e56cd4c8d77cee9be04a6.zip |
fixes bug #13659
Diffstat (limited to 'net-fs')
-rw-r--r-- | net-fs/autofs/files/autofs.rc8 | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/net-fs/autofs/files/autofs.rc8 b/net-fs/autofs/files/autofs.rc8 index 257e7c81adc6..a78e8b24c8c5 100644 --- a/net-fs/autofs/files/autofs.rc8 +++ b/net-fs/autofs/files/autofs.rc8 @@ -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.rc8,v 1.2 2002/11/25 07:11:33 bcowan Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/files/autofs.rc8,v 1.3 2003/01/13 04:28:23 bcowan Exp $ # rc file for automount using a Sun-style "master map". # We first look for a local /etc/auto.master, then a YP @@ -116,14 +116,14 @@ function getmounts() fi map=`echo $map | cut -f2- -d:` - echo STARTUPOPTIONS $startupoptions > /tmp/debug - echo DIR $dir >> /tmp/debug - echo MAPTYPE $maptype >> /tmp/debug - echo MAP $map >> /tmp/debug - echo MAPOPTIONS $mapoptions >> /tmp/debug - echo LOCALOPTIONS $localoptions >> /tmp/debug + #echo STARTUPOPTIONS $startupoptions > /tmp/debug + #echo DIR $dir >> /tmp/debug + #echo MAPTYPE $maptype >> /tmp/debug + #echo MAP $map >> /tmp/debug + #echo MAPOPTIONS $mapoptions >> /tmp/debug + #echo LOCALOPTIONS $localoptions >> /tmp/debug - echo "$DAEMON $dir $maptype $map $mapoptions $localoptions" | sed -e 's/ / /g' -e 's/ / /g' + echo "$DAEMON $startupoptions $dir $maptype $map $mapoptions $localoptions" | sed -e 's/ / /g' -e 's/ / /g' # echo ------------------------ fi |