daad2691f8
It contains the following changes to the original /etc/rc.d/jail script: - parameters support: you can specify any parameters supported by jail(8) - ZFS support: you can deletate ZFS datasets to jails - jails are not identified by a file in /var/spool/jail anymore - two new commands "create" and "remove" to manage persistent jails Please refer to the README file for more information. Martin Matuska <mm_at_FreeBSD_dot_org>
30 lines
514 B
Makefile
30 lines
514 B
Makefile
# New ports collection makefile for: jailrc
|
|
# Date created: 8 November 2011
|
|
# Whom: Martin Matuska <mm@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= jailrc
|
|
PORTVERSION= 1.0
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= #
|
|
DISTFILES= #
|
|
|
|
MAINTAINER= mm@FreeBSD.org
|
|
COMMENT= Improved jail startup/shutdown script
|
|
|
|
NO_BUILD= yes
|
|
NO_INSTALL= yes
|
|
|
|
USE_RC_SUBR= jailrc
|
|
|
|
PORTDOCS= *
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
@${INSTALL_DATA} ${FILESDIR}/README ${DOCSDIR}/README
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|