[Pkg-sysvinit-commits] r995 - in sysvinit/trunk/debian: .
initscripts/lib/init
Petter Reinholdtsen
pere at costa.debian.org
Sat Sep 30 15:15:00 UTC 2006
Author: pere
Date: 2006-09-30 15:14:59 +0000 (Sat, 30 Sep 2006)
New Revision: 995
Modified:
sysvinit/trunk/debian/changelog
sysvinit/trunk/debian/initscripts/lib/init/mount-functions.sh
Log:
* List the options found in /etc/fstab after the default options
used when mounting virtual file systems, to allow options in fstab
to override the defaults. (Closes: #390181)
Modified: sysvinit/trunk/debian/changelog
===================================================================
--- sysvinit/trunk/debian/changelog 2006-09-30 15:09:29 UTC (rev 994)
+++ sysvinit/trunk/debian/changelog 2006-09-30 15:14:59 UTC (rev 995)
@@ -10,6 +10,9 @@
* Do not try to create /var/run and /var/lock during installation or
upgrades if /var is a relative symlink. It is not going to
work. (Closes: #390328)
+ * List the options found in /etc/fstab after the default options
+ used when mounting virtual file systems, to allow options in fstab
+ to override the defaults. (Closes: #390181)
-- Petter Reinholdtsen <pere at debian.org> Sat, 30 Sep 2006 14:37:36 +0200
Modified: sysvinit/trunk/debian/initscripts/lib/init/mount-functions.sh
===================================================================
--- sysvinit/trunk/debian/initscripts/lib/init/mount-functions.sh 2006-09-30 15:09:29 UTC (rev 994)
+++ sysvinit/trunk/debian/initscripts/lib/init/mount-functions.sh 2006-09-30 15:14:59 UTC (rev 995)
@@ -113,7 +113,7 @@
if [ "$VERBOSE" != "no" ]; then
is_empty_dir "$MTPT" >/dev/null 2>&1 || log_warning_msg "Files under mount point '$MTPT' will be hidden."
fi
- mount -n -t $FSTYPE $OPTS $5 $DEVNAME $MTPT
+ mount -n -t $FSTYPE $5 $OPTS $DEVNAME $MTPT
}
#
More information about the Pkg-sysvinit-commits
mailing list