4e6bda04c4
1.1 "Mean Street" -- 4/2/2013 Core Features * added --check option for "dry run" mode * added --diff option to show how templates or copied files change, or might change * --list-tasks for the playbook will list the tasks without running them * able to set the environment by setting "environment:" as a dictionary on any task (go proxy support!) * added ansible_ssh_user and ansible_ssh_pass for per-host/group username and password * jinja2 extensions can now be loaded from the config file * support for complex arguments to modules (within reason) * can specify ansible_connection=X to define the connection type in inventory variables * a new chroot connection type * module common code now has basic type checking (and casting) capability * module common now supports a 'no_log' attribute to mark a field as not to be syslogged * inventory can now point to a directory containing multiple scripts/hosts files, if using this, put group_vars/host_vars directories inside this directory * added configurable crypt scheme for 'vars_prompt' * password generating lookup plugin -- $PASSWORD(path/to/save/data/in) * added --step option to ansible-playbook, works just like Linux interactive startup! Modules Added: * bzr (bazaar version control) * cloudformation * django-manage * gem (ruby gems) * homebrew * lvg (logical volume groups) * lvol (LVM logical volumes) * macports * mongodb_user * netscaler * okg * openbsd_pkg * rabbit_mq_plugin * rabbit_mq_user * rabbit_mq_vhost * rabbit_mq_parameter * rhn_channel * s3 -- allows putting file contents in buckets for sharing over s3 * uri module -- can get/put/post/etc * vagrant -- launching VMs with vagrant, this is different from existing vagrant plugin * zfs
83 lines
2.5 KiB
Makefile
83 lines
2.5 KiB
Makefile
# $NetBSD: Makefile,v 1.7 2013/04/13 17:51:57 riz Exp $
|
|
#
|
|
|
|
DISTNAME= ansible-1.1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://ansible.cc/releases/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://ansible.cc/
|
|
COMMENT= SSH-based configuration management, deployment, and task execution
|
|
LICENSE= gnu-gpl-v3
|
|
|
|
EGDIR= ${PREFIX}/share/examples/ansible
|
|
|
|
#USE_LANGUAGES= # none
|
|
USE_TOOLS+= gmake
|
|
|
|
SUBST_CLASSES+= prefix
|
|
SUBST_STAGE.prefix= pre-configure
|
|
SUBST_FILES.prefix= docs/man/man1/ansible-playbook.1
|
|
SUBST_FILES.prefix+= docs/man/man1/ansible.1
|
|
SUBST_FILES.prefix+= examples/ansible.cfg
|
|
SUBST_FILES.prefix+= lib/ansible/constants.py
|
|
SUBST_SED.prefix= -e "s,@PREFIX@,${PREFIX},"
|
|
SUBST_SED.prefix+= -e "s,@PKG_SYSCONFDIR@,${PKG_SYSCONFDIR},"
|
|
|
|
SUBST_CLASSES+= localbase
|
|
SUBST_STAGE.localbase= pre-configure
|
|
SUBST_FILES.localbase= \
|
|
lib/ansible/callbacks.py \
|
|
library/mysql_db \
|
|
library/ping \
|
|
library/pkgin \
|
|
library/raw \
|
|
library/setup \
|
|
library/slurp \
|
|
library/virt
|
|
SUBST_SED.localbase= -e "s,@LOCALBASE@,${LOCALBASE},"
|
|
|
|
SUBST_CLASSES+= pythonbin
|
|
SUBST_STAGE.pythonbin= pre-configure
|
|
SUBST_FILES.pythonbin= Makefile
|
|
SUBST_FILES.pythonbin= -e "s,@PYTHONBIN@,${PYTHONBIN},"
|
|
|
|
MANPAGES= ansible-doc.1 ansible-pull.1 ansible-playbook.1 ansible.1
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-yaml-[0-9]*:../../textproc/py-yaml
|
|
DEPENDS+= ${PYPKGPREFIX}-paramiko-[0-9]*:../../security/py-paramiko
|
|
DEPENDS+= ${PYPKGPREFIX}-jinja2-[0-9]*:../../textproc/py-jinja2
|
|
|
|
INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 ${PKGMANDIR}/man3
|
|
INSTALLATION_DIRS+= ${PKG_SYSCONFDIR}/ansible ${EGDIR}/playbooks
|
|
|
|
CHECK_INTERPRETER_SKIP= share/ansible/*
|
|
|
|
pre-install:
|
|
find ${WRKSRC} -name \*.orig -exec rm {} \;
|
|
|
|
post-install:
|
|
.for f in ${MANPAGES}
|
|
${INSTALL_MAN} ${WRKSRC}/docs/man/man1/${f} \
|
|
${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/
|
|
.endfor
|
|
${INSTALL_MAN} ${WRKSRC}/docs/man/man3/* \
|
|
${DESTDIR}${PREFIX}/${PKGMANDIR}/man3/
|
|
.for f in ansible.cfg hosts
|
|
${INSTALL_DATA} ${WRKSRC}/examples/${f} \
|
|
${DESTDIR}/${EGDIR}
|
|
.endfor
|
|
${INSTALL_DATA_DIR} ${DESTDIR}/${EGDIR}/playbooks
|
|
for f in ${WRKSRC}/examples/playbooks/*.yml; do \
|
|
${INSTALL_DATA} $$f ${DESTDIR}/${EGDIR}/playbooks; \
|
|
done
|
|
.for f in filter_plugins handlers tasks templates vars
|
|
${INSTALL_DATA_DIR} ${DESTDIR}/${EGDIR}/playbooks/${f}
|
|
for g in ${WRKSRC}/examples/playbooks/${f}/*; do \
|
|
${INSTALL_DATA} $$g ${DESTDIR}/${EGDIR}/playbooks/${f}; \
|
|
done
|
|
.endfor
|
|
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../lang/python/distutils.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|