[Glibc-bsd-commits] r3287 - in trunk/freebsd-utils/debian: . scripts/bin

Guillem Jover guillem at alioth.debian.org
Fri Apr 1 12:02:34 UTC 2011


Author: guillem
Date: 2011-04-01 12:02:11 +0000 (Fri, 01 Apr 2011)
New Revision: 3287

Modified:
   trunk/freebsd-utils/debian/changelog
   trunk/freebsd-utils/debian/scripts/bin/mount
Log:
Translate mount -f (--fake) to -d in the wrapper

Prompted by an inquiry from Roger Leigh <rleigh at debian.org>.


Modified: trunk/freebsd-utils/debian/changelog
===================================================================
--- trunk/freebsd-utils/debian/changelog	2011-03-28 14:17:17 UTC (rev 3286)
+++ trunk/freebsd-utils/debian/changelog	2011-04-01 12:02:11 UTC (rev 3287)
@@ -16,6 +16,9 @@
   [ Tuco Xyz ]
   * Add dumpon and savecore.
 
+  [ Guillem Jover ]
+  * Translate mount -f (--fake) to -d in the wrapper.
+
  -- Robert Millan <rmh at debian.org>  Wed, 09 Feb 2011 17:42:15 +0100
 
 freebsd-utils (8.1-4) unstable; urgency=low

Modified: trunk/freebsd-utils/debian/scripts/bin/mount
===================================================================
--- trunk/freebsd-utils/debian/scripts/bin/mount	2011-03-28 14:17:17 UTC (rev 3286)
+++ trunk/freebsd-utils/debian/scripts/bin/mount	2011-04-01 12:02:11 UTC (rev 3287)
@@ -4,6 +4,7 @@
 args=""
 while [ $# -gt 0 ]; do
   case "$1" in
+    -f) args="${args} -d" ;;
     -n) ;;
     -O) shift ;;
     *)  if [ -n "${args}" ] ; then args="${args} $1" ; else args="$1" ; fi ;;




More information about the Glibc-bsd-commits mailing list