mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-26 09:46:09 +00:00
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>
This commit is contained in:
parent
fcb8f07dc5
commit
25e1b431be
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=295639
@ -45,6 +45,7 @@
|
||||
SUBDIR += atitvout
|
||||
SUBDIR += atop
|
||||
SUBDIR += auto-admin
|
||||
SUBDIR += automount
|
||||
SUBDIR += automounter
|
||||
SUBDIR += autopsy
|
||||
SUBDIR += avfs
|
||||
|
28
sysutils/automount/Makefile
Normal file
28
sysutils/automount/Makefile
Normal file
@ -0,0 +1,28 @@
|
||||
# New ports collection Makefile for: automount
|
||||
# Date created: 04 March 2012
|
||||
# Whom: Slawomir Wojciech Wojtczak <vermaden@interia.pl>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= automount
|
||||
PORTVERSION= 1.3.1
|
||||
CATEGORIES= sysutils
|
||||
MASTER_SITES= https://raw.github.com/vermaden/automount/master/
|
||||
|
||||
MAINTAINER= vermaden@interia.pl
|
||||
COMMENT= FreeBSD's devd(8) based automount sollution
|
||||
|
||||
LICENSE= BSD
|
||||
|
||||
PLIST_FILES= sbin/automount etc/devd/automount_devd.conf etc/automount.conf.sample
|
||||
|
||||
NO_BUILD= yes
|
||||
|
||||
do-install:
|
||||
${INSTALL_SCRIPT} ${WRKSRC}/automount ${PREFIX}/sbin
|
||||
${INSTALL_DATA} ${WRKSRC}/automount_devd.conf ${PREFIX}/etc/devd/automount_devd.conf
|
||||
${INSTALL_DATA} ${WRKSRC}/automount.conf.sample ${PREFIX}/etc/automount.conf.sample
|
||||
${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
|
||||
|
||||
.include <bsd.port.mk>
|
2
sysutils/automount/distinfo
Normal file
2
sysutils/automount/distinfo
Normal file
@ -0,0 +1,2 @@
|
||||
SHA256 (automount-1.3.1.tar.gz) = 1bc38c82b513c03bdd9e1f65edf552e3d1b74a64a90d628bad39a35d07ff0f7d
|
||||
SIZE (automount-1.3.1.tar.gz) = 3636
|
6
sysutils/automount/pkg-descr
Normal file
6
sysutils/automount/pkg-descr
Normal file
@ -0,0 +1,6 @@
|
||||
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/
|
15
sysutils/automount/pkg-install
Normal file
15
sysutils/automount/pkg-install
Normal file
@ -0,0 +1,15 @@
|
||||
#!/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
|
Loading…
Reference in New Issue
Block a user