[Usbmount-commit] r6 - in trunk/usbmount: . debian

Rafael Laboissiere rafael@costa.debian.org
Wed, 16 Mar 2005 08:30:20 +0100


Author: rafael
Date: 2005-03-16 08:30:19 +0100 (Wed, 16 Mar 2005)
New Revision: 6

Modified:
   trunk/usbmount/debian/changelog
   trunk/usbmount/debian/control
   trunk/usbmount/usbmount.conf
Log:
Release 0.0.7

Modified: trunk/usbmount/debian/changelog
===================================================================
--- trunk/usbmount/debian/changelog	2005-03-16 07:29:01 UTC (rev 5)
+++ trunk/usbmount/debian/changelog	2005-03-16 07:30:19 UTC (rev 6)
@@ -1,3 +1,23 @@
+usbmount (0.0.7) unstable; urgency=low
+
+  Rafael Laboissiere:
+
+  * First upload of this package to the official Debian distribution
+    (closes: #298526)
+  * NMU in the behalf of the upstream maintainer, which is also the
+    effective maintainer of the Debian package.
+
+  Martin Dickopp:
+
+  * Built as a Debian-native package again.
+  * Default configuration does not mount vfat filesystems any more.
+  * Put warning in configuration file that sync-mounting is not fully
+    implemented for vfat filesystem.
+  * Package description refers to new location of the homepage
+    (http://usbmount.alioth.debian.org/).
+
+ -- Martin Dickopp <martin@zero-based.org>  Wed,  9 Mar 2005 14:10:34 +0100
+
 usbmount (0.0.6-1) unstable; urgency=low
 
   * New upstream release:
@@ -15,10 +35,6 @@
 
 usbmount (0.0.5-1) unstable; urgency=low
 
-  * First upload of this package to the official Debian distribution
-    (closes: #298526)
-  * NMU in the behalf of the upstream maintainer, which is also the
-    effective maintainer of the Debian package.
   * debian/control:
     - Added myself to Uploaders field
     - Start Description with lower-case letter

Modified: trunk/usbmount/debian/control
===================================================================
--- trunk/usbmount/debian/control	2005-03-16 07:29:01 UTC (rev 5)
+++ trunk/usbmount/debian/control	2005-03-16 07:30:19 UTC (rev 6)
@@ -21,4 +21,4 @@
  .
  The script that does the (un)mounting is called by the udev daemon.
  .
- Homepage: http://www.zero-based.org/debian/usbmount.html
+ Homepage: http://usbmount.alioth.debian.org/

Modified: trunk/usbmount/usbmount.conf
===================================================================
--- trunk/usbmount/usbmount.conf	2005-03-16 07:29:01 UTC (rev 5)
+++ trunk/usbmount/usbmount.conf	2005-03-16 07:30:19 UTC (rev 6)
@@ -11,12 +11,18 @@
 
 # Filesystem types: USB mass storage devices are only mounted if they
 # contain a filesystem type which is in this list.
-FILESYSTEMS="msdos vfat"
+#############################################################################
+# WARNING!  The vfat filesystem does not yet fully implement sync-mounting. #
+# If you include 'vfat' in the list of filesystem types, you *MUST* make    #
+# sure all data is written to the medium before you remove it (e.g. run the #
+# 'sync' command in a terminal window).  Otherwise, you *WILL* lose data!   #
+#############################################################################
+FILESYSTEMS="ext2 ext3"
 
 # Mount options: Options passed to the mount command with the -o flag.
 # WARNING!  Removing "sync" from the options is a very bad idea and
 # might result in severe data loss.
-MOUNTOPTIONS="sync,noexec,nodev,noatime,gid=floppy,dmask=0007,fmask=0117"
+MOUNTOPTIONS="sync,noexec,nodev,noatime"
 
 # If set to "yes", more information will be logged via the syslog
 # facility.