From owner-svn-ports-head@FreeBSD.ORG Tue Jul 8 14:30:28 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 55F7CCD; Tue, 8 Jul 2014 14:30:28 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 42E3529CE; Tue, 8 Jul 2014 14:30:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s68EUSBS004205; Tue, 8 Jul 2014 14:30:28 GMT (envelope-from koobs@svn.freebsd.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s68EURsj004201; Tue, 8 Jul 2014 14:30:27 GMT (envelope-from koobs@svn.freebsd.org) Message-Id: <201407081430.s68EURsj004201@svn.freebsd.org> From: Kubilay Kocak Date: Tue, 8 Jul 2014 14:30:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r361248 - in head/sysutils: . bsdploy X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Jul 2014 14:30:28 -0000 Author: koobs Date: Tue Jul 8 14:30:27 2014 New Revision: 361248 URL: http://svnweb.freebsd.org/changeset/ports/361248 QAT: https://qat.redports.org/buildarchive/r361248/ Log: [NEW] sysutils/bsdploy: Container Management for FreeBSD Jails BSDploy is a comprehensive tool to provision, configure and maintain FreeBSD jail hosts and jails. Its main design goal is to lower the barrier to repeatable jail setups. * Modular provisioning with plugins for VirtualBox, Amazon EC2 and an achitecture to support more. * Bootstrap complete jail hosts from scratch. * Declarative configuration: All hosts and their properties defined in ploy.conf are automatically exposed to Ansible. * Imperative maintenance: Run Fabric scripts with ploy do JAILNAME TASKNAME and have all of the hosts and their variables in fab.env. * Configure ZFS pools and filesystems with whole-disk-encryption. WWW: http://docs.bsdploy.net/ Added: head/sysutils/bsdploy/ head/sysutils/bsdploy/Makefile (contents, props changed) head/sysutils/bsdploy/distinfo (contents, props changed) head/sysutils/bsdploy/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Tue Jul 8 14:11:30 2014 (r361247) +++ head/sysutils/Makefile Tue Jul 8 14:30:27 2014 (r361248) @@ -83,6 +83,7 @@ SUBDIR += bsdhwmon SUBDIR += bsdinfo SUBDIR += bsdmoted + SUBDIR += bsdploy SUBDIR += bsdstats SUBDIR += bubblemon-dockapp SUBDIR += bulk_extractor Added: head/sysutils/bsdploy/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bsdploy/Makefile Tue Jul 8 14:30:27 2014 (r361248) @@ -0,0 +1,30 @@ +# Created by: Kubilay Kocak +# $FreeBSD$ + +PORTNAME= bsdploy +DISTVERSION= 1.0b4 +CATEGORIES= sysutils python +MASTER_SITES= CHEESESHOP + +MAINTAINER= koobs@FreeBSD.org +COMMENT= Container Management for FreeBSD Jails + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}yaml>0:${PORTSDIR}/devel/py-yaml \ + ${PYTHON_PKGNAMEPREFIX}Jinja2>0:${PORTSDIR}/devel/py-Jinja2 \ + ${PYTHON_PKGNAMEPREFIX}liblzma>0:${PORTSDIR}/archivers/py-liblzma \ + ${PYTHON_PKGNAMEPREFIX}ploy>=1.0.r13:${PORTSDIR}/sysutils/py-ploy \ + ${PYTHON_PKGNAMEPREFIX}ploy_ansible>=1.0.b7:${PORTSDIR}/sysutils/py-ploy_ansible \ + ${PYTHON_PKGNAMEPREFIX}ploy_ezjail>=1.0.b9:${PORTSDIR}/sysutils/py-ploy_ezjail \ + ${PYTHON_PKGNAMEPREFIX}ploy_fabric>=1.0.b5:${PORTSDIR}/sysutils/py-ploy_fabric + +OPTIONS_DEFINE= EC2 +OPTIONS_DEFAULT= EC2 +EC2_DESC= Support Amazon Web Services EC2 hosts +EC2_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ploy_ec2>0:${PORTSDIR}/sysutils/py-ploy_ec2 + +USES= zip +USE_PYTHON= -2.7 +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes + +.include Added: head/sysutils/bsdploy/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bsdploy/distinfo Tue Jul 8 14:30:27 2014 (r361248) @@ -0,0 +1,2 @@ +SHA256 (bsdploy-1.0b4.zip) = c4a026bab828768cae4335463a56b7f95c898e5b9df50ae83b077731f3f1f0e2 +SIZE (bsdploy-1.0b4.zip) = 74038 Added: head/sysutils/bsdploy/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bsdploy/pkg-descr Tue Jul 8 14:30:27 2014 (r361248) @@ -0,0 +1,15 @@ +BSDploy is a comprehensive tool to provision, configure and maintain +FreeBSD jail hosts and jails. + +Its main design goal is to lower the barrier to repeatable jail setups. + + * Modular provisioning with plugins for VirtualBox, Amazon EC2 and + an achitecture to support more. + * Bootstrap complete jail hosts from scratch. + * Declarative configuration: All hosts and their properties defined + in ploy.conf are automatically exposed to Ansible. + * Imperative maintenance: Run Fabric scripts with ploy do JAILNAME + TASKNAME and have all of the hosts and their variables in fab.env. + * Configure ZFS pools and filesystems with whole-disk-encryption. + +WWW: http://docs.bsdploy.net/