commit 7dfad639a460323b243d4a81275f629ff1aeb1c3 Author: Slawomir Wojciech Wojtczak (vermaden) Date: Mon Feb 20 11:11:02 2012 +0100 initial commit diff --git a/README b/README new file mode 100644 index 0000000..28f9a56 --- /dev/null +++ b/README @@ -0,0 +1,24 @@ +AUTOMOUNT is a devd(8) based flexible yet very simple automounter for FreeBSD. + +Currently it supports these file systems: + -- NTFS requires sysutils/fusefs-ntfs for R/W + -- FAT/FAT32 + -- exFAT requires sysutils/fusefs-exfat + -- EXT2 + -- EXT3 + -- EXT4 requires sysutils/fusefs-ext4fuse + -- UFS + +It keeps state of the mounted devices at /var/run/automount.state and logs +all activities to /var/log/automount.log file. + +The place for the script is at /usr/local/sbin/automount.sh executable. + +The only additional configuration it requires is to add these lines as +/usr/local/etc/devd/automount_devd.conf file, which would allow it to work. + +Remember to restart /etc/rc.d/devd daemon after adding +/usr/local/etc/devd/automount_devd.conf file. + +Have Fun ;) +vermaden diff --git a/automount.conf b/automount.conf new file mode 120000 index 0000000..99bb14d --- /dev/null +++ b/automount.conf @@ -0,0 +1 @@ +/home/vermaden/scripts/automount.conf \ No newline at end of file diff --git a/automount.sh b/automount.sh new file mode 120000 index 0000000..f36c823 --- /dev/null +++ b/automount.sh @@ -0,0 +1 @@ +/home/vermaden/scripts/automount.sh \ No newline at end of file diff --git a/automount_devd.conf b/automount_devd.conf new file mode 120000 index 0000000..4613fbc --- /dev/null +++ b/automount_devd.conf @@ -0,0 +1 @@ +/home/vermaden/scripts/automount_devd.conf \ No newline at end of file