1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-26 00:55:14 +00:00
freebsd-ports/sysutils/automount/pkg-install
Marcelo Araujo 25e1b431be automount is a devd(8) based automounter for FreeBSD.
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>
2012-04-28 06:50:59 +00:00

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