JailManager is a shell script for creating, managing, updating, and removing jails. It handles initializing the underlying FreeBSD system, creating jails, handling initial configuration, updates, and starting/stopping jails. JailManager runs on FreeBSD 13.x and newer. It does not require ZFS and works on any BSD filesystem. WWW: https://github.com/slicer69/jailmanager PR: 287221 Reported by: Jesse Smith <jsmith@resonatingmedia.com> (new maintainer) Reviewed by: Herbert J. Skuhra <herbert@gojira.at>
25 lines
540 B
Makefile
25 lines
540 B
Makefile
PORTNAME= jailmanager
|
|
PORTVERSION= 0.3
|
|
CATEGORIES= sysutils
|
|
|
|
MAINTAINER= jsmith@resonatingmedia.com
|
|
COMMENT= Simple shell script for managing FreeBSD jails
|
|
WWW= https://github.com/slicer69/jailmanager
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKDIR}/JailManager-${PORTVERSION}/LICENSE
|
|
|
|
RUN_DEPENDS= ${LOCALBASE}/bin/bash:shells/bash
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= slicer69
|
|
NO_BUILD= yes
|
|
NO_ARCH= yes
|
|
|
|
PLIST_FILES= bin/jm
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKDIR}/JailManager-${PORTVERSION}/jm ${STAGEDIR}${PREFIX}/bin/jm
|
|
|
|
.include <bsd.port.mk>
|