ft@0: # Configuration file for the usbmount package, which mounts removable ft@0: # storage devices when they are plugged in and unmounts them when they ft@0: # are removed. ft@0: ft@0: # Change to zero to disable usbmount ft@0: ENABLED=1 ft@0: ft@0: # Mountpoints: These directories are eligible as mointpoints for ft@0: # removable storage devices. A newly plugged in device is mounted on ft@0: # the first directory in this list that exists and on which nothing is ft@0: # mounted yet. ft@0: MOUNTPOINTS="/media/usb0 /media/usb1 /media/usb2 /media/usb3 ft@0: /media/usb4 /media/usb5 /media/usb6 /media/usb7" ft@0: ft@0: # Filesystem types: removable storage devices are only mounted if they ft@0: # contain a filesystem type which is in this list. ft@0: FILESYSTEMS="vfat ext2 ext3 ext4 hfsplus ntfs fuseblk" ft@0: ft@0: ############################################################################# ft@0: # WARNING! # ft@0: # # ft@0: # The "sync" option may not be a good choice to use with flash drives, as # ft@0: # it forces a greater amount of writing operating on the drive. This makes # ft@0: # the writing speed considerably lower and also leads to a faster wear out # ft@0: # of the disk. # ft@0: # # ft@0: # If you omit it, don't forget to use the command "sync" to synchronize the # ft@0: # data on your disk before removing the drive or you may experience data # ft@0: # loss. # ft@0: # # ft@0: # It is highly recommended that you use the pumount command (as a regular # ft@0: # user) before unplugging the device. It makes calling the "sync" command # ft@0: # and mounting with the sync option unnecessary---this is similar to other # ft@0: # operating system's "safely disconnect the device" option. # ft@0: ############################################################################# ft@0: # Mount options: Options passed to the mount command with the -o flag. ft@0: # See the warning above regarding removing "sync" from the options. ft@0: MOUNTOPTIONS="sync,noexec,nodev,noatime,nodiratime" ft@0: ft@0: # Filesystem type specific mount options: This variable contains a space ft@0: # separated list of strings, each which the form "-fstype=TYPE,OPTIONS". ft@0: # ft@0: # If a filesystem with a type listed here is mounted, the corresponding ft@0: # options are appended to those specificed in the MOUNTOPTIONS variable. ft@0: # ft@0: # For example, "-fstype=vfat,gid=floppy,dmask=0007,fmask=0117" would add ft@0: # the options "gid=floppy,dmask=0007,fmask=0117" when a vfat filesystem ft@0: # is mounted. ft@0: FS_MOUNTOPTIONS="" ft@0: ft@0: # If set to "yes", more information will be logged via the syslog ft@0: # facility. ft@0: VERBOSE=yes