#-------------------------------------------------------------------- # /etc/config.d/usbmount - eisfair setup configuration parameters # # Creation: 2008-05-22 jv # Last Update: 2008-05-22 jv # # Copyright (c) 2001-2008 The Eisfair Team, # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. #-------------------------------------------------------------------- #-------------------------------------------------------------------- # configuration #-------------------------------------------------------------------- START_USBMOUNT='yes' # Start usb automount USBMOUNT_FILESYSTEMS="ext2 ext3 vfat" # Only used filesystem types USBMOUNT_MOUNTOPTIONS="sync,noexec,nodev,noatime" # 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. USBMOUNT_FS_MOUNTOPTIONS="" # Filesystem type specific mount options # This variable contains a space separated list of strings, each of which # has the form "-fstype=TYPE,OPTIONS". # If a filesystem with a type listed here is mounted, the corresponding # options are appended to those specificed in the MOUNTOPTIONS variable. # For example, "-fstype=vfat,gid=floppy,dmask=0007,fmask=0117" would add the # options "gid=floppy,dmask=0007,fmask=0117" when a vfat filesystem is mounted. USBMOUNT_VERBOSE="no" # If set to "yes", more information will be logged via the syslog facility. #-------------------------------------------------------------------- # End #--------------------------------------------------------------------