mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
25e1b431be
It supports most popular file systems: NTFS/MSDOS/exFAT/EXT2/EXT3/EXT4/UFS WWW: https://github.com/vermaden/automount/ PR: ports/166275 Submitted by: vermaden <vermaden@interia.pl>
16 lines
218 B
Bash
16 lines
218 B
Bash
#!/bin/sh
|
|
|
|
case ${2} in
|
|
(POST-INSTALL)
|
|
/etc/rc.d/devd restart
|
|
echo
|
|
echo
|
|
echo "Check /usr/local/sbin/automount --help for available options."
|
|
echo
|
|
echo
|
|
;;
|
|
(PRE-INSTALL)
|
|
:
|
|
;;
|
|
esac
|