Mon Dec 2 22:54:46 2013 UTC ()
Update ansible to 1.4.1.

Some changes:
 * Many new modules, sorted in the following subdirs:
   cloud commands database files internal inventory messaging
   monitoring net_infrastructure network notification packaging
   source_control system utilities web_infrastructure
 * accelerated mode: An enhanced fireball mode that requires zero
   bootstrapping and fewer requirements plus adds capabilities like
   sudo commands
 * Connection default is now "smart", which discovers if the system
   openssh can support ControlPersist, and uses it if so, if not
   falls back to paramiko
 * external inventory scripts may now return host variables in one
   pass, which allows them to be much more efficient for large numbers
   of hosts (AWS!)
 * "~" now expanded on each component of configured plugin paths
 * Countless feature enhancements and bugfixes

For a full list, see https://github.com/ansible/ansible/blob/devel/CHANGELOG.md


(hubertf)
diff -r1.7 -r1.8 pkgsrc/sysutils/ansible/Makefile
diff -r1.4 -r1.5 pkgsrc/sysutils/ansible/PLIST
diff -r1.4 -r1.5 pkgsrc/sysutils/ansible/distinfo
diff -r1.2 -r0 pkgsrc/sysutils/ansible/patches/patch-docs_man_man1_ansible-playbook.1
diff -r1.2 -r0 pkgsrc/sysutils/ansible/patches/patch-docs_man_man1_ansible.1
diff -r1.2 -r0 pkgsrc/sysutils/ansible/patches/patch-library_mysql_db
diff -r1.2 -r0 pkgsrc/sysutils/ansible/patches/patch-library_pkgin
diff -r1.2 -r0 pkgsrc/sysutils/ansible/patches/patch-library_setup
diff -r1.2 -r0 pkgsrc/sysutils/ansible/patches/patch-library_virt
diff -r1.1 -r1.2 pkgsrc/sysutils/ansible/patches/patch-examples_ansible.cfg
diff -r1.2 -r1.3 pkgsrc/sysutils/ansible/patches/patch-lib_ansible_callbacks.py
diff -r1.3 -r1.4 pkgsrc/sysutils/ansible/patches/patch-lib_ansible_constants.py
diff -r0 -r1.1 pkgsrc/sysutils/ansible/patches/patch-library-system-ping
diff -r0 -r1.1 pkgsrc/sysutils/ansible/patches/patch-library_database_riak
diff -r0 -r1.1 pkgsrc/sysutils/ansible/patches/patch-library_monitoring_nagios
diff -r0 -r1.1 pkgsrc/sysutils/ansible/patches/patch-library_packaging_pkgin
diff -r0 -r1.1 pkgsrc/sysutils/ansible/patches/patch-library_system_setup
diff -r1.1 -r0 pkgsrc/sysutils/ansible/patches/patch-library_ping
diff -r1.1 -r0 pkgsrc/sysutils/ansible/patches/patch-library_raw
diff -r1.1 -r0 pkgsrc/sysutils/ansible/patches/patch-library_slurp

cvs diff -r1.7 -r1.8 pkgsrc/sysutils/ansible/Makefile (expand / switch to unified diff)

--- pkgsrc/sysutils/ansible/Makefile 2013/04/13 17:51:57 1.7
+++ pkgsrc/sysutils/ansible/Makefile 2013/12/02 22:54:46 1.8
@@ -1,50 +1,43 @@ @@ -1,50 +1,43 @@
1# $NetBSD: Makefile,v 1.7 2013/04/13 17:51:57 riz Exp $ 1# $NetBSD: Makefile,v 1.8 2013/12/02 22:54:46 hubertf Exp $
2# 2#
3 3
4DISTNAME= ansible-1.1 4DISTNAME= ansible-1.4.1
5CATEGORIES= sysutils 5CATEGORIES= sysutils
6MASTER_SITES= http://ansible.cc/releases/ 6MASTER_SITES= http://ansibleworks.com/releases/
7 7
8MAINTAINER= pkgsrc-users@NetBSD.org 8MAINTAINER= pkgsrc-users@NetBSD.org
9HOMEPAGE= http://ansible.cc/ 9HOMEPAGE= http://ansibleworks.com/
10COMMENT= SSH-based configuration management, deployment, and task execution 10COMMENT= SSH-based configuration management, deployment, and task execution
11LICENSE= gnu-gpl-v3 11LICENSE= gnu-gpl-v3
12 12
13EGDIR= ${PREFIX}/share/examples/ansible 13EGDIR= ${PREFIX}/share/examples/ansible
14 14
15#USE_LANGUAGES= # none 15#USE_LANGUAGES= # none
16USE_TOOLS+= gmake 16USE_TOOLS+= gmake
17 17
18SUBST_CLASSES+= prefix 18SUBST_CLASSES+= prefix
19SUBST_STAGE.prefix= pre-configure 19SUBST_STAGE.prefix= pre-configure
20SUBST_FILES.prefix= docs/man/man1/ansible-playbook.1 
21SUBST_FILES.prefix+= docs/man/man1/ansible.1 
22SUBST_FILES.prefix+= examples/ansible.cfg 20SUBST_FILES.prefix+= examples/ansible.cfg
23SUBST_FILES.prefix+= lib/ansible/constants.py 21SUBST_FILES.prefix+= lib/ansible/constants.py
24SUBST_SED.prefix= -e "s,@PREFIX@,${PREFIX}," 22SUBST_SED.prefix= -e "s,@PREFIX@,${PREFIX},"
25SUBST_SED.prefix+= -e "s,@PKG_SYSCONFDIR@,${PKG_SYSCONFDIR}," 23SUBST_SED.prefix+= -e "s,@PKG_SYSCONFDIR@,${PKG_SYSCONFDIR},"
26 24
27SUBST_CLASSES+= localbase 25SUBST_CLASSES+= localbase
28SUBST_STAGE.localbase= pre-configure 26SUBST_STAGE.localbase= pre-configure
29SUBST_FILES.localbase= \ 27SUBST_FILES.localbase= \
30 lib/ansible/callbacks.py \ 28 lib/ansible/callbacks.py \
31 library/mysql_db \ 29 library/packaging/pkgin \
32 library/ping \ 30 library/system/setup
33 library/pkgin \ 
34 library/raw \ 
35 library/setup \ 
36 library/slurp \ 
37 library/virt 
38SUBST_SED.localbase= -e "s,@LOCALBASE@,${LOCALBASE}," 31SUBST_SED.localbase= -e "s,@LOCALBASE@,${LOCALBASE},"
39 32
40SUBST_CLASSES+= pythonbin 33SUBST_CLASSES+= pythonbin
41SUBST_STAGE.pythonbin= pre-configure 34SUBST_STAGE.pythonbin= pre-configure
42SUBST_FILES.pythonbin= Makefile 35SUBST_FILES.pythonbin= Makefile
43SUBST_FILES.pythonbin= -e "s,@PYTHONBIN@,${PYTHONBIN}," 36SUBST_FILES.pythonbin= -e "s,@PYTHONBIN@,${PYTHONBIN},"
44 37
45MANPAGES= ansible-doc.1 ansible-pull.1 ansible-playbook.1 ansible.1 38MANPAGES= ansible-doc.1 ansible-pull.1 ansible-playbook.1 ansible.1
46 39
47DEPENDS+= ${PYPKGPREFIX}-yaml-[0-9]*:../../textproc/py-yaml 40DEPENDS+= ${PYPKGPREFIX}-yaml-[0-9]*:../../textproc/py-yaml
48DEPENDS+= ${PYPKGPREFIX}-paramiko-[0-9]*:../../security/py-paramiko 41DEPENDS+= ${PYPKGPREFIX}-paramiko-[0-9]*:../../security/py-paramiko
49DEPENDS+= ${PYPKGPREFIX}-jinja2-[0-9]*:../../textproc/py-jinja2 42DEPENDS+= ${PYPKGPREFIX}-jinja2-[0-9]*:../../textproc/py-jinja2
50 43
@@ -57,27 +50,17 @@ pre-install: @@ -57,27 +50,17 @@ pre-install:
57 find ${WRKSRC} -name \*.orig -exec rm {} \; 50 find ${WRKSRC} -name \*.orig -exec rm {} \;
58 51
59post-install: 52post-install:
60.for f in ${MANPAGES} 53.for f in ${MANPAGES}
61 ${INSTALL_MAN} ${WRKSRC}/docs/man/man1/${f} \ 54 ${INSTALL_MAN} ${WRKSRC}/docs/man/man1/${f} \
62 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/ 55 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/
63.endfor 56.endfor
64 ${INSTALL_MAN} ${WRKSRC}/docs/man/man3/* \ 57 ${INSTALL_MAN} ${WRKSRC}/docs/man/man3/* \
65 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man3/ 58 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man3/
66.for f in ansible.cfg hosts 59.for f in ansible.cfg hosts
67 ${INSTALL_DATA} ${WRKSRC}/examples/${f} \ 60 ${INSTALL_DATA} ${WRKSRC}/examples/${f} \
68 ${DESTDIR}/${EGDIR} 61 ${DESTDIR}/${EGDIR}
69.endfor 62.endfor
70 ${INSTALL_DATA_DIR} ${DESTDIR}/${EGDIR}/playbooks 
71 for f in ${WRKSRC}/examples/playbooks/*.yml; do \ 
72 ${INSTALL_DATA} $$f ${DESTDIR}/${EGDIR}/playbooks; \ 
73 done 
74.for f in filter_plugins handlers tasks templates vars 
75 ${INSTALL_DATA_DIR} ${DESTDIR}/${EGDIR}/playbooks/${f} 
76 for g in ${WRKSRC}/examples/playbooks/${f}/*; do \ 
77 ${INSTALL_DATA} $$g ${DESTDIR}/${EGDIR}/playbooks/${f}; \ 
78 done 
79.endfor 
80 63
81.include "../../lang/python/application.mk" 64.include "../../lang/python/application.mk"
82.include "../../lang/python/distutils.mk" 65.include "../../lang/python/distutils.mk"
83.include "../../mk/bsd.pkg.mk" 66.include "../../mk/bsd.pkg.mk"

cvs diff -r1.4 -r1.5 pkgsrc/sysutils/ansible/PLIST (expand / switch to unified diff)

--- pkgsrc/sysutils/ansible/PLIST 2013/04/13 17:51:57 1.4
+++ pkgsrc/sysutils/ansible/PLIST 2013/12/02 22:54:46 1.5
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.4 2013/04/13 17:51:57 riz Exp $ 1@comment $NetBSD: PLIST,v 1.5 2013/12/02 22:54:46 hubertf Exp $
2bin/ansible 2bin/ansible
3bin/ansible-doc 3bin/ansible-doc
4bin/ansible-playbook 4bin/ansible-playbook
5bin/ansible-pull 5bin/ansible-pull
6${PYSITELIB}/${EGG_FILE} 6${PYSITELIB}/${EGG_FILE}
7${PYSITELIB}/ansible/__init__.py 7${PYSITELIB}/ansible/__init__.py
8${PYSITELIB}/ansible/__init__.pyc 8${PYSITELIB}/ansible/__init__.pyc
9${PYSITELIB}/ansible/__init__.pyo 9${PYSITELIB}/ansible/__init__.pyo
10${PYSITELIB}/ansible/callback_plugins/__init__.py 10${PYSITELIB}/ansible/callback_plugins/__init__.py
11${PYSITELIB}/ansible/callback_plugins/__init__.pyc 11${PYSITELIB}/ansible/callback_plugins/__init__.pyc
12${PYSITELIB}/ansible/callback_plugins/__init__.pyo 12${PYSITELIB}/ansible/callback_plugins/__init__.pyo
13${PYSITELIB}/ansible/callback_plugins/noop.py 13${PYSITELIB}/ansible/callback_plugins/noop.py
14${PYSITELIB}/ansible/callback_plugins/noop.pyc 14${PYSITELIB}/ansible/callback_plugins/noop.pyc
@@ -45,359 +45,557 @@ ${PYSITELIB}/ansible/inventory/ini.pyc @@ -45,359 +45,557 @@ ${PYSITELIB}/ansible/inventory/ini.pyc
45${PYSITELIB}/ansible/inventory/ini.pyo 45${PYSITELIB}/ansible/inventory/ini.pyo
46${PYSITELIB}/ansible/inventory/script.py 46${PYSITELIB}/ansible/inventory/script.py
47${PYSITELIB}/ansible/inventory/script.pyc 47${PYSITELIB}/ansible/inventory/script.pyc
48${PYSITELIB}/ansible/inventory/script.pyo 48${PYSITELIB}/ansible/inventory/script.pyo
49${PYSITELIB}/ansible/inventory/vars_plugins/__init__.py 49${PYSITELIB}/ansible/inventory/vars_plugins/__init__.py
50${PYSITELIB}/ansible/inventory/vars_plugins/__init__.pyc 50${PYSITELIB}/ansible/inventory/vars_plugins/__init__.pyc
51${PYSITELIB}/ansible/inventory/vars_plugins/__init__.pyo 51${PYSITELIB}/ansible/inventory/vars_plugins/__init__.pyo
52${PYSITELIB}/ansible/inventory/vars_plugins/group_vars.py 52${PYSITELIB}/ansible/inventory/vars_plugins/group_vars.py
53${PYSITELIB}/ansible/inventory/vars_plugins/group_vars.pyc 53${PYSITELIB}/ansible/inventory/vars_plugins/group_vars.pyc
54${PYSITELIB}/ansible/inventory/vars_plugins/group_vars.pyo 54${PYSITELIB}/ansible/inventory/vars_plugins/group_vars.pyo
55${PYSITELIB}/ansible/module_common.py 55${PYSITELIB}/ansible/module_common.py
56${PYSITELIB}/ansible/module_common.pyc 56${PYSITELIB}/ansible/module_common.pyc
57${PYSITELIB}/ansible/module_common.pyo 57${PYSITELIB}/ansible/module_common.pyo
 58${PYSITELIB}/ansible/module_utils/__init__.py
 59${PYSITELIB}/ansible/module_utils/__init__.pyc
 60${PYSITELIB}/ansible/module_utils/__init__.pyo
 61${PYSITELIB}/ansible/module_utils/basic.py
 62${PYSITELIB}/ansible/module_utils/basic.pyc
 63${PYSITELIB}/ansible/module_utils/basic.pyo
 64${PYSITELIB}/ansible/module_utils/ec2.py
 65${PYSITELIB}/ansible/module_utils/ec2.pyc
 66${PYSITELIB}/ansible/module_utils/ec2.pyo
58${PYSITELIB}/ansible/playbook/__init__.py 67${PYSITELIB}/ansible/playbook/__init__.py
59${PYSITELIB}/ansible/playbook/__init__.pyc 68${PYSITELIB}/ansible/playbook/__init__.pyc
60${PYSITELIB}/ansible/playbook/__init__.pyo 69${PYSITELIB}/ansible/playbook/__init__.pyo
61${PYSITELIB}/ansible/playbook/play.py 70${PYSITELIB}/ansible/playbook/play.py
62${PYSITELIB}/ansible/playbook/play.pyc 71${PYSITELIB}/ansible/playbook/play.pyc
63${PYSITELIB}/ansible/playbook/play.pyo 72${PYSITELIB}/ansible/playbook/play.pyo
64${PYSITELIB}/ansible/playbook/task.py 73${PYSITELIB}/ansible/playbook/task.py
65${PYSITELIB}/ansible/playbook/task.pyc 74${PYSITELIB}/ansible/playbook/task.pyc
66${PYSITELIB}/ansible/playbook/task.pyo 75${PYSITELIB}/ansible/playbook/task.pyo
67${PYSITELIB}/ansible/runner/__init__.py 76${PYSITELIB}/ansible/runner/__init__.py
68${PYSITELIB}/ansible/runner/__init__.pyc 77${PYSITELIB}/ansible/runner/__init__.pyc
69${PYSITELIB}/ansible/runner/__init__.pyo 78${PYSITELIB}/ansible/runner/__init__.pyo
70${PYSITELIB}/ansible/runner/action_plugins/__init__.py 79${PYSITELIB}/ansible/runner/action_plugins/__init__.py
71${PYSITELIB}/ansible/runner/action_plugins/__init__.pyc 80${PYSITELIB}/ansible/runner/action_plugins/__init__.pyc
72${PYSITELIB}/ansible/runner/action_plugins/__init__.pyo 81${PYSITELIB}/ansible/runner/action_plugins/__init__.pyo
73${PYSITELIB}/ansible/runner/action_plugins/add_host.py 82${PYSITELIB}/ansible/runner/action_plugins/add_host.py
74${PYSITELIB}/ansible/runner/action_plugins/add_host.pyc 83${PYSITELIB}/ansible/runner/action_plugins/add_host.pyc
75${PYSITELIB}/ansible/runner/action_plugins/add_host.pyo 84${PYSITELIB}/ansible/runner/action_plugins/add_host.pyo
 85${PYSITELIB}/ansible/runner/action_plugins/assemble.py
 86${PYSITELIB}/ansible/runner/action_plugins/assemble.pyc
 87${PYSITELIB}/ansible/runner/action_plugins/assemble.pyo
76${PYSITELIB}/ansible/runner/action_plugins/async.py 88${PYSITELIB}/ansible/runner/action_plugins/async.py
77${PYSITELIB}/ansible/runner/action_plugins/async.pyc 89${PYSITELIB}/ansible/runner/action_plugins/async.pyc
78${PYSITELIB}/ansible/runner/action_plugins/async.pyo 90${PYSITELIB}/ansible/runner/action_plugins/async.pyo
79${PYSITELIB}/ansible/runner/action_plugins/copy.py 91${PYSITELIB}/ansible/runner/action_plugins/copy.py
80${PYSITELIB}/ansible/runner/action_plugins/copy.pyc 92${PYSITELIB}/ansible/runner/action_plugins/copy.pyc
81${PYSITELIB}/ansible/runner/action_plugins/copy.pyo 93${PYSITELIB}/ansible/runner/action_plugins/copy.pyo
82${PYSITELIB}/ansible/runner/action_plugins/debug.py 94${PYSITELIB}/ansible/runner/action_plugins/debug.py
83${PYSITELIB}/ansible/runner/action_plugins/debug.pyc 95${PYSITELIB}/ansible/runner/action_plugins/debug.pyc
84${PYSITELIB}/ansible/runner/action_plugins/debug.pyo 96${PYSITELIB}/ansible/runner/action_plugins/debug.pyo
85${PYSITELIB}/ansible/runner/action_plugins/fail.py 97${PYSITELIB}/ansible/runner/action_plugins/fail.py
86${PYSITELIB}/ansible/runner/action_plugins/fail.pyc 98${PYSITELIB}/ansible/runner/action_plugins/fail.pyc
87${PYSITELIB}/ansible/runner/action_plugins/fail.pyo 99${PYSITELIB}/ansible/runner/action_plugins/fail.pyo
88${PYSITELIB}/ansible/runner/action_plugins/fetch.py 100${PYSITELIB}/ansible/runner/action_plugins/fetch.py
89${PYSITELIB}/ansible/runner/action_plugins/fetch.pyc 101${PYSITELIB}/ansible/runner/action_plugins/fetch.pyc
90${PYSITELIB}/ansible/runner/action_plugins/fetch.pyo 102${PYSITELIB}/ansible/runner/action_plugins/fetch.pyo
91${PYSITELIB}/ansible/runner/action_plugins/group_by.py 103${PYSITELIB}/ansible/runner/action_plugins/group_by.py
92${PYSITELIB}/ansible/runner/action_plugins/group_by.pyc 104${PYSITELIB}/ansible/runner/action_plugins/group_by.pyc
93${PYSITELIB}/ansible/runner/action_plugins/group_by.pyo 105${PYSITELIB}/ansible/runner/action_plugins/group_by.pyo
 106${PYSITELIB}/ansible/runner/action_plugins/include_vars.py
 107${PYSITELIB}/ansible/runner/action_plugins/include_vars.pyc
 108${PYSITELIB}/ansible/runner/action_plugins/include_vars.pyo
94${PYSITELIB}/ansible/runner/action_plugins/normal.py 109${PYSITELIB}/ansible/runner/action_plugins/normal.py
95${PYSITELIB}/ansible/runner/action_plugins/normal.pyc 110${PYSITELIB}/ansible/runner/action_plugins/normal.pyc
96${PYSITELIB}/ansible/runner/action_plugins/normal.pyo 111${PYSITELIB}/ansible/runner/action_plugins/normal.pyo
97${PYSITELIB}/ansible/runner/action_plugins/pause.py 112${PYSITELIB}/ansible/runner/action_plugins/pause.py
98${PYSITELIB}/ansible/runner/action_plugins/pause.pyc 113${PYSITELIB}/ansible/runner/action_plugins/pause.pyc
99${PYSITELIB}/ansible/runner/action_plugins/pause.pyo 114${PYSITELIB}/ansible/runner/action_plugins/pause.pyo
100${PYSITELIB}/ansible/runner/action_plugins/raw.py 115${PYSITELIB}/ansible/runner/action_plugins/raw.py
101${PYSITELIB}/ansible/runner/action_plugins/raw.pyc 116${PYSITELIB}/ansible/runner/action_plugins/raw.pyc
102${PYSITELIB}/ansible/runner/action_plugins/raw.pyo 117${PYSITELIB}/ansible/runner/action_plugins/raw.pyo
103${PYSITELIB}/ansible/runner/action_plugins/script.py 118${PYSITELIB}/ansible/runner/action_plugins/script.py
104${PYSITELIB}/ansible/runner/action_plugins/script.pyc 119${PYSITELIB}/ansible/runner/action_plugins/script.pyc
105${PYSITELIB}/ansible/runner/action_plugins/script.pyo 120${PYSITELIB}/ansible/runner/action_plugins/script.pyo
 121${PYSITELIB}/ansible/runner/action_plugins/set_fact.py
 122${PYSITELIB}/ansible/runner/action_plugins/set_fact.pyc
 123${PYSITELIB}/ansible/runner/action_plugins/set_fact.pyo
 124${PYSITELIB}/ansible/runner/action_plugins/synchronize.py
 125${PYSITELIB}/ansible/runner/action_plugins/synchronize.pyc
 126${PYSITELIB}/ansible/runner/action_plugins/synchronize.pyo
106${PYSITELIB}/ansible/runner/action_plugins/template.py 127${PYSITELIB}/ansible/runner/action_plugins/template.py
107${PYSITELIB}/ansible/runner/action_plugins/template.pyc 128${PYSITELIB}/ansible/runner/action_plugins/template.pyc
108${PYSITELIB}/ansible/runner/action_plugins/template.pyo 129${PYSITELIB}/ansible/runner/action_plugins/template.pyo
 130${PYSITELIB}/ansible/runner/action_plugins/unarchive.py
 131${PYSITELIB}/ansible/runner/action_plugins/unarchive.pyc
 132${PYSITELIB}/ansible/runner/action_plugins/unarchive.pyo
109${PYSITELIB}/ansible/runner/connection.py 133${PYSITELIB}/ansible/runner/connection.py
110${PYSITELIB}/ansible/runner/connection.pyc 134${PYSITELIB}/ansible/runner/connection.pyc
111${PYSITELIB}/ansible/runner/connection.pyo 135${PYSITELIB}/ansible/runner/connection.pyo
112${PYSITELIB}/ansible/runner/connection_plugins/__init__.py 136${PYSITELIB}/ansible/runner/connection_plugins/__init__.py
113${PYSITELIB}/ansible/runner/connection_plugins/__init__.pyc 137${PYSITELIB}/ansible/runner/connection_plugins/__init__.pyc
114${PYSITELIB}/ansible/runner/connection_plugins/__init__.pyo 138${PYSITELIB}/ansible/runner/connection_plugins/__init__.pyo
 139${PYSITELIB}/ansible/runner/connection_plugins/accelerate.py
 140${PYSITELIB}/ansible/runner/connection_plugins/accelerate.pyc
 141${PYSITELIB}/ansible/runner/connection_plugins/accelerate.pyo
115${PYSITELIB}/ansible/runner/connection_plugins/chroot.py 142${PYSITELIB}/ansible/runner/connection_plugins/chroot.py
116${PYSITELIB}/ansible/runner/connection_plugins/chroot.pyc 143${PYSITELIB}/ansible/runner/connection_plugins/chroot.pyc
117${PYSITELIB}/ansible/runner/connection_plugins/chroot.pyo 144${PYSITELIB}/ansible/runner/connection_plugins/chroot.pyo
118${PYSITELIB}/ansible/runner/connection_plugins/fireball.py 145${PYSITELIB}/ansible/runner/connection_plugins/fireball.py
119${PYSITELIB}/ansible/runner/connection_plugins/fireball.pyc 146${PYSITELIB}/ansible/runner/connection_plugins/fireball.pyc
120${PYSITELIB}/ansible/runner/connection_plugins/fireball.pyo 147${PYSITELIB}/ansible/runner/connection_plugins/fireball.pyo
 148${PYSITELIB}/ansible/runner/connection_plugins/funcd.py
 149${PYSITELIB}/ansible/runner/connection_plugins/funcd.pyc
 150${PYSITELIB}/ansible/runner/connection_plugins/funcd.pyo
 151${PYSITELIB}/ansible/runner/connection_plugins/jail.py
 152${PYSITELIB}/ansible/runner/connection_plugins/jail.pyc
 153${PYSITELIB}/ansible/runner/connection_plugins/jail.pyo
121${PYSITELIB}/ansible/runner/connection_plugins/local.py 154${PYSITELIB}/ansible/runner/connection_plugins/local.py
122${PYSITELIB}/ansible/runner/connection_plugins/local.pyc 155${PYSITELIB}/ansible/runner/connection_plugins/local.pyc
123${PYSITELIB}/ansible/runner/connection_plugins/local.pyo 156${PYSITELIB}/ansible/runner/connection_plugins/local.pyo
124${PYSITELIB}/ansible/runner/connection_plugins/paramiko_ssh.py 157${PYSITELIB}/ansible/runner/connection_plugins/paramiko_ssh.py
125${PYSITELIB}/ansible/runner/connection_plugins/paramiko_ssh.pyc 158${PYSITELIB}/ansible/runner/connection_plugins/paramiko_ssh.pyc
126${PYSITELIB}/ansible/runner/connection_plugins/paramiko_ssh.pyo 159${PYSITELIB}/ansible/runner/connection_plugins/paramiko_ssh.pyo
127${PYSITELIB}/ansible/runner/connection_plugins/ssh.py 160${PYSITELIB}/ansible/runner/connection_plugins/ssh.py
128${PYSITELIB}/ansible/runner/connection_plugins/ssh.pyc 161${PYSITELIB}/ansible/runner/connection_plugins/ssh.pyc
129${PYSITELIB}/ansible/runner/connection_plugins/ssh.pyo 162${PYSITELIB}/ansible/runner/connection_plugins/ssh.pyo
130${PYSITELIB}/ansible/runner/filter_plugins/__init__.py 163${PYSITELIB}/ansible/runner/filter_plugins/__init__.py
131${PYSITELIB}/ansible/runner/filter_plugins/__init__.pyc 164${PYSITELIB}/ansible/runner/filter_plugins/__init__.pyc
132${PYSITELIB}/ansible/runner/filter_plugins/__init__.pyo 165${PYSITELIB}/ansible/runner/filter_plugins/__init__.pyo
133${PYSITELIB}/ansible/runner/filter_plugins/core.py 166${PYSITELIB}/ansible/runner/filter_plugins/core.py
134${PYSITELIB}/ansible/runner/filter_plugins/core.pyc 167${PYSITELIB}/ansible/runner/filter_plugins/core.pyc
135${PYSITELIB}/ansible/runner/filter_plugins/core.pyo 168${PYSITELIB}/ansible/runner/filter_plugins/core.pyo
136${PYSITELIB}/ansible/runner/lookup_plugins/__init__.py 169${PYSITELIB}/ansible/runner/lookup_plugins/__init__.py
137${PYSITELIB}/ansible/runner/lookup_plugins/__init__.pyc 170${PYSITELIB}/ansible/runner/lookup_plugins/__init__.pyc
138${PYSITELIB}/ansible/runner/lookup_plugins/__init__.pyo 171${PYSITELIB}/ansible/runner/lookup_plugins/__init__.pyo
139${PYSITELIB}/ansible/runner/lookup_plugins/dnstxt.py 172${PYSITELIB}/ansible/runner/lookup_plugins/dnstxt.py
140${PYSITELIB}/ansible/runner/lookup_plugins/dnstxt.pyc 173${PYSITELIB}/ansible/runner/lookup_plugins/dnstxt.pyc
141${PYSITELIB}/ansible/runner/lookup_plugins/dnstxt.pyo 174${PYSITELIB}/ansible/runner/lookup_plugins/dnstxt.pyo
142${PYSITELIB}/ansible/runner/lookup_plugins/env.py 175${PYSITELIB}/ansible/runner/lookup_plugins/env.py
143${PYSITELIB}/ansible/runner/lookup_plugins/env.pyc 176${PYSITELIB}/ansible/runner/lookup_plugins/env.pyc
144${PYSITELIB}/ansible/runner/lookup_plugins/env.pyo 177${PYSITELIB}/ansible/runner/lookup_plugins/env.pyo
 178${PYSITELIB}/ansible/runner/lookup_plugins/etcd.py
 179${PYSITELIB}/ansible/runner/lookup_plugins/etcd.pyc
 180${PYSITELIB}/ansible/runner/lookup_plugins/etcd.pyo
145${PYSITELIB}/ansible/runner/lookup_plugins/file.py 181${PYSITELIB}/ansible/runner/lookup_plugins/file.py
146${PYSITELIB}/ansible/runner/lookup_plugins/file.pyc 182${PYSITELIB}/ansible/runner/lookup_plugins/file.pyc
147${PYSITELIB}/ansible/runner/lookup_plugins/file.pyo 183${PYSITELIB}/ansible/runner/lookup_plugins/file.pyo
148${PYSITELIB}/ansible/runner/lookup_plugins/fileglob.py 184${PYSITELIB}/ansible/runner/lookup_plugins/fileglob.py
149${PYSITELIB}/ansible/runner/lookup_plugins/fileglob.pyc 185${PYSITELIB}/ansible/runner/lookup_plugins/fileglob.pyc
150${PYSITELIB}/ansible/runner/lookup_plugins/fileglob.pyo 186${PYSITELIB}/ansible/runner/lookup_plugins/fileglob.pyo
151${PYSITELIB}/ansible/runner/lookup_plugins/first_found.py 187${PYSITELIB}/ansible/runner/lookup_plugins/first_found.py
152${PYSITELIB}/ansible/runner/lookup_plugins/first_found.pyc 188${PYSITELIB}/ansible/runner/lookup_plugins/first_found.pyc
153${PYSITELIB}/ansible/runner/lookup_plugins/first_found.pyo 189${PYSITELIB}/ansible/runner/lookup_plugins/first_found.pyo
 190${PYSITELIB}/ansible/runner/lookup_plugins/flattened.py
 191${PYSITELIB}/ansible/runner/lookup_plugins/flattened.pyc
 192${PYSITELIB}/ansible/runner/lookup_plugins/flattened.pyo
 193${PYSITELIB}/ansible/runner/lookup_plugins/indexed_items.py
 194${PYSITELIB}/ansible/runner/lookup_plugins/indexed_items.pyc
 195${PYSITELIB}/ansible/runner/lookup_plugins/indexed_items.pyo
 196${PYSITELIB}/ansible/runner/lookup_plugins/inventory_hostnames.py
 197${PYSITELIB}/ansible/runner/lookup_plugins/inventory_hostnames.pyc
 198${PYSITELIB}/ansible/runner/lookup_plugins/inventory_hostnames.pyo
154${PYSITELIB}/ansible/runner/lookup_plugins/items.py 199${PYSITELIB}/ansible/runner/lookup_plugins/items.py
155${PYSITELIB}/ansible/runner/lookup_plugins/items.pyc 200${PYSITELIB}/ansible/runner/lookup_plugins/items.pyc
156${PYSITELIB}/ansible/runner/lookup_plugins/items.pyo 201${PYSITELIB}/ansible/runner/lookup_plugins/items.pyo
157${PYSITELIB}/ansible/runner/lookup_plugins/lines.py 202${PYSITELIB}/ansible/runner/lookup_plugins/lines.py
158${PYSITELIB}/ansible/runner/lookup_plugins/lines.pyc 203${PYSITELIB}/ansible/runner/lookup_plugins/lines.pyc
159${PYSITELIB}/ansible/runner/lookup_plugins/lines.pyo 204${PYSITELIB}/ansible/runner/lookup_plugins/lines.pyo
160${PYSITELIB}/ansible/runner/lookup_plugins/nested.py 205${PYSITELIB}/ansible/runner/lookup_plugins/nested.py
161${PYSITELIB}/ansible/runner/lookup_plugins/nested.pyc 206${PYSITELIB}/ansible/runner/lookup_plugins/nested.pyc
162${PYSITELIB}/ansible/runner/lookup_plugins/nested.pyo 207${PYSITELIB}/ansible/runner/lookup_plugins/nested.pyo
163${PYSITELIB}/ansible/runner/lookup_plugins/password.py 208${PYSITELIB}/ansible/runner/lookup_plugins/password.py
164${PYSITELIB}/ansible/runner/lookup_plugins/password.pyc 209${PYSITELIB}/ansible/runner/lookup_plugins/password.pyc
165${PYSITELIB}/ansible/runner/lookup_plugins/password.pyo 210${PYSITELIB}/ansible/runner/lookup_plugins/password.pyo
166${PYSITELIB}/ansible/runner/lookup_plugins/pipe.py 211${PYSITELIB}/ansible/runner/lookup_plugins/pipe.py
167${PYSITELIB}/ansible/runner/lookup_plugins/pipe.pyc 212${PYSITELIB}/ansible/runner/lookup_plugins/pipe.pyc
168${PYSITELIB}/ansible/runner/lookup_plugins/pipe.pyo 213${PYSITELIB}/ansible/runner/lookup_plugins/pipe.pyo
169${PYSITELIB}/ansible/runner/lookup_plugins/random_choice.py 214${PYSITELIB}/ansible/runner/lookup_plugins/random_choice.py
170${PYSITELIB}/ansible/runner/lookup_plugins/random_choice.pyc 215${PYSITELIB}/ansible/runner/lookup_plugins/random_choice.pyc
171${PYSITELIB}/ansible/runner/lookup_plugins/random_choice.pyo 216${PYSITELIB}/ansible/runner/lookup_plugins/random_choice.pyo
172${PYSITELIB}/ansible/runner/lookup_plugins/redis_kv.py 217${PYSITELIB}/ansible/runner/lookup_plugins/redis_kv.py
173${PYSITELIB}/ansible/runner/lookup_plugins/redis_kv.pyc 218${PYSITELIB}/ansible/runner/lookup_plugins/redis_kv.pyc
174${PYSITELIB}/ansible/runner/lookup_plugins/redis_kv.pyo 219${PYSITELIB}/ansible/runner/lookup_plugins/redis_kv.pyo
175${PYSITELIB}/ansible/runner/lookup_plugins/sequence.py 220${PYSITELIB}/ansible/runner/lookup_plugins/sequence.py
176${PYSITELIB}/ansible/runner/lookup_plugins/sequence.pyc 221${PYSITELIB}/ansible/runner/lookup_plugins/sequence.pyc
177${PYSITELIB}/ansible/runner/lookup_plugins/sequence.pyo 222${PYSITELIB}/ansible/runner/lookup_plugins/sequence.pyo
 223${PYSITELIB}/ansible/runner/lookup_plugins/subelements.py
 224${PYSITELIB}/ansible/runner/lookup_plugins/subelements.pyc
 225${PYSITELIB}/ansible/runner/lookup_plugins/subelements.pyo
178${PYSITELIB}/ansible/runner/lookup_plugins/template.py 226${PYSITELIB}/ansible/runner/lookup_plugins/template.py
179${PYSITELIB}/ansible/runner/lookup_plugins/template.pyc 227${PYSITELIB}/ansible/runner/lookup_plugins/template.pyc
180${PYSITELIB}/ansible/runner/lookup_plugins/template.pyo 228${PYSITELIB}/ansible/runner/lookup_plugins/template.pyo
 229${PYSITELIB}/ansible/runner/lookup_plugins/together.py
 230${PYSITELIB}/ansible/runner/lookup_plugins/together.pyc
 231${PYSITELIB}/ansible/runner/lookup_plugins/together.pyo
181${PYSITELIB}/ansible/runner/poller.py 232${PYSITELIB}/ansible/runner/poller.py
182${PYSITELIB}/ansible/runner/poller.pyc 233${PYSITELIB}/ansible/runner/poller.pyc
183${PYSITELIB}/ansible/runner/poller.pyo 234${PYSITELIB}/ansible/runner/poller.pyo
184${PYSITELIB}/ansible/runner/return_data.py 235${PYSITELIB}/ansible/runner/return_data.py
185${PYSITELIB}/ansible/runner/return_data.pyc 236${PYSITELIB}/ansible/runner/return_data.pyc
186${PYSITELIB}/ansible/runner/return_data.pyo 237${PYSITELIB}/ansible/runner/return_data.pyo
187${PYSITELIB}/ansible/utils/__init__.py 238${PYSITELIB}/ansible/utils/__init__.py
188${PYSITELIB}/ansible/utils/__init__.pyc 239${PYSITELIB}/ansible/utils/__init__.pyc
189${PYSITELIB}/ansible/utils/__init__.pyo 240${PYSITELIB}/ansible/utils/__init__.pyo
190${PYSITELIB}/ansible/utils/module_docs.py 241${PYSITELIB}/ansible/utils/module_docs.py
191${PYSITELIB}/ansible/utils/module_docs.pyc 242${PYSITELIB}/ansible/utils/module_docs.pyc
192${PYSITELIB}/ansible/utils/module_docs.pyo 243${PYSITELIB}/ansible/utils/module_docs.pyo
193${PYSITELIB}/ansible/utils/plugins.py 244${PYSITELIB}/ansible/utils/plugins.py
194${PYSITELIB}/ansible/utils/plugins.pyc 245${PYSITELIB}/ansible/utils/plugins.pyc
195${PYSITELIB}/ansible/utils/plugins.pyo 246${PYSITELIB}/ansible/utils/plugins.pyo
196${PYSITELIB}/ansible/utils/template.py 247${PYSITELIB}/ansible/utils/template.py
197${PYSITELIB}/ansible/utils/template.pyc 248${PYSITELIB}/ansible/utils/template.pyc
198${PYSITELIB}/ansible/utils/template.pyo 249${PYSITELIB}/ansible/utils/template.pyo
199man/man1/ansible-doc.1 250man/man1/ansible-doc.1
200man/man1/ansible-playbook.1 251man/man1/ansible-playbook.1
201man/man1/ansible-pull.1 252man/man1/ansible-pull.1
202man/man1/ansible.1 253man/man1/ansible.1
 254man/man3/ansible.accelerate.3
 255man/man3/ansible.acl.3
203man/man3/ansible.add_host.3 256man/man3/ansible.add_host.3
 257man/man3/ansible.airbrake_deployment.3
204man/man3/ansible.apt.3 258man/man3/ansible.apt.3
205man/man3/ansible.apt_key.3 259man/man3/ansible.apt_key.3
206man/man3/ansible.apt_repository.3 260man/man3/ansible.apt_repository.3
 261man/man3/ansible.arista_interface.3
 262man/man3/ansible.arista_l2interface.3
 263man/man3/ansible.arista_lag.3
 264man/man3/ansible.arista_vlan.3
207man/man3/ansible.assemble.3 265man/man3/ansible.assemble.3
208man/man3/ansible.async_status.3 266man/man3/ansible.async_status.3
209man/man3/ansible.authorized_key.3 267man/man3/ansible.authorized_key.3
 268man/man3/ansible.bigip_monitor_http.3
 269man/man3/ansible.bigip_monitor_tcp.3
 270man/man3/ansible.bigip_node.3
 271man/man3/ansible.bigip_pool.3
 272man/man3/ansible.bigip_pool_member.3
 273man/man3/ansible.boundary_meter.3
210man/man3/ansible.bzr.3 274man/man3/ansible.bzr.3
 275man/man3/ansible.campfire.3
211man/man3/ansible.cloudformation.3 276man/man3/ansible.cloudformation.3
212man/man3/ansible.command.3 277man/man3/ansible.command.3
213man/man3/ansible.copy.3 278man/man3/ansible.copy.3
214man/man3/ansible.cron.3 279man/man3/ansible.cron.3
 280man/man3/ansible.datadog_event.3
215man/man3/ansible.debug.3 281man/man3/ansible.debug.3
 282man/man3/ansible.digital_ocean.3
216man/man3/ansible.django_manage.3 283man/man3/ansible.django_manage.3
 284man/man3/ansible.dnsmadeeasy.3
 285man/man3/ansible.docker.3
217man/man3/ansible.easy_install.3 286man/man3/ansible.easy_install.3
218man/man3/ansible.ec2.3 287man/man3/ansible.ec2.3
 288man/man3/ansible.ec2_ami.3
 289man/man3/ansible.ec2_eip.3
 290man/man3/ansible.ec2_elb.3
219man/man3/ansible.ec2_facts.3 291man/man3/ansible.ec2_facts.3
 292man/man3/ansible.ec2_group.3
 293man/man3/ansible.ec2_tag.3
220man/man3/ansible.ec2_vol.3 294man/man3/ansible.ec2_vol.3
 295man/man3/ansible.ec2_vpc.3
 296man/man3/ansible.ejabberd_user.3
 297man/man3/ansible.elasticache.3
221man/man3/ansible.facter.3 298man/man3/ansible.facter.3
222man/man3/ansible.fail.3 299man/man3/ansible.fail.3
223man/man3/ansible.fetch.3 300man/man3/ansible.fetch.3
224man/man3/ansible.file.3 301man/man3/ansible.file.3
 302man/man3/ansible.filesystem.3
225man/man3/ansible.fireball.3 303man/man3/ansible.fireball.3
 304man/man3/ansible.firewalld.3
 305man/man3/ansible.flowdock.3
 306man/man3/ansible.gc_storage.3
 307man/man3/ansible.gce.3
 308man/man3/ansible.gce_lb.3
 309man/man3/ansible.gce_net.3
 310man/man3/ansible.gce_pd.3
226man/man3/ansible.gem.3 311man/man3/ansible.gem.3
227man/man3/ansible.get_url.3 312man/man3/ansible.get_url.3
228man/man3/ansible.git.3 313man/man3/ansible.git.3
 314man/man3/ansible.github_hooks.3
 315man/man3/ansible.glance_image.3
229man/man3/ansible.group.3 316man/man3/ansible.group.3
230man/man3/ansible.group_by.3 317man/man3/ansible.group_by.3
 318man/man3/ansible.grove.3
231man/man3/ansible.hg.3 319man/man3/ansible.hg.3
 320man/man3/ansible.hipchat.3
232man/man3/ansible.homebrew.3 321man/man3/ansible.homebrew.3
 322man/man3/ansible.hostname.3
 323man/man3/ansible.htpasswd.3
 324man/man3/ansible.include_vars.3
233man/man3/ansible.ini_file.3 325man/man3/ansible.ini_file.3
 326man/man3/ansible.irc.3
 327man/man3/ansible.jabber.3
 328man/man3/ansible.jboss.3
 329man/man3/ansible.kernel_blacklist.3
 330man/man3/ansible.keystone_user.3
234man/man3/ansible.lineinfile.3 331man/man3/ansible.lineinfile.3
 332man/man3/ansible.linode.3
235man/man3/ansible.lvg.3 333man/man3/ansible.lvg.3
236man/man3/ansible.lvol.3 334man/man3/ansible.lvol.3
237man/man3/ansible.macports.3 335man/man3/ansible.macports.3
238man/man3/ansible.mail.3 336man/man3/ansible.mail.3
 337man/man3/ansible.modprobe.3
239man/man3/ansible.mongodb_user.3 338man/man3/ansible.mongodb_user.3
 339man/man3/ansible.monit.3
240man/man3/ansible.mount.3 340man/man3/ansible.mount.3
 341man/man3/ansible.mqtt.3
241man/man3/ansible.mysql_db.3 342man/man3/ansible.mysql_db.3
 343man/man3/ansible.mysql_replication.3
242man/man3/ansible.mysql_user.3 344man/man3/ansible.mysql_user.3
 345man/man3/ansible.mysql_variables.3
243man/man3/ansible.nagios.3 346man/man3/ansible.nagios.3
244man/man3/ansible.netscaler.3 347man/man3/ansible.netscaler.3
 348man/man3/ansible.newrelic_deployment.3
 349man/man3/ansible.nova_compute.3
 350man/man3/ansible.nova_keypair.3
 351man/man3/ansible.npm.3
245man/man3/ansible.ohai.3 352man/man3/ansible.ohai.3
 353man/man3/ansible.open_iscsi.3
246man/man3/ansible.openbsd_pkg.3 354man/man3/ansible.openbsd_pkg.3
 355man/man3/ansible.openvswitch_bridge.3
 356man/man3/ansible.openvswitch_port.3
247man/man3/ansible.opkg.3 357man/man3/ansible.opkg.3
 358man/man3/ansible.osx_say.3
 359man/man3/ansible.ovirt.3
248man/man3/ansible.pacman.3 360man/man3/ansible.pacman.3
 361man/man3/ansible.pagerduty.3
249man/man3/ansible.pause.3 362man/man3/ansible.pause.3
250man/man3/ansible.ping.3 363man/man3/ansible.ping.3
 364man/man3/ansible.pingdom.3
251man/man3/ansible.pip.3 365man/man3/ansible.pip.3
252man/man3/ansible.pkgin.3 366man/man3/ansible.pkgin.3
 367man/man3/ansible.pkgng.3
 368man/man3/ansible.pkgutil.3
 369man/man3/ansible.portinstall.3
253man/man3/ansible.postgresql_db.3 370man/man3/ansible.postgresql_db.3
 371man/man3/ansible.postgresql_privs.3
254man/man3/ansible.postgresql_user.3 372man/man3/ansible.postgresql_user.3
 373man/man3/ansible.quantum_floating_ip.3
 374man/man3/ansible.quantum_floating_ip_associate.3
 375man/man3/ansible.quantum_network.3
 376man/man3/ansible.quantum_router.3
 377man/man3/ansible.quantum_router_gateway.3
 378man/man3/ansible.quantum_router_interface.3
 379man/man3/ansible.quantum_subnet.3
255man/man3/ansible.rabbitmq_parameter.3 380man/man3/ansible.rabbitmq_parameter.3
256man/man3/ansible.rabbitmq_plugin.3 381man/man3/ansible.rabbitmq_plugin.3
257man/man3/ansible.rabbitmq_user.3 382man/man3/ansible.rabbitmq_user.3
258man/man3/ansible.rabbitmq_vhost.3 383man/man3/ansible.rabbitmq_vhost.3
259man/man3/ansible.raw.3 384man/man3/ansible.raw.3
 385man/man3/ansible.rax.3
 386man/man3/ansible.rax_clb.3
 387man/man3/ansible.rax_clb_nodes.3
 388man/man3/ansible.rax_facts.3
 389man/man3/ansible.rax_network.3
 390man/man3/ansible.rds.3
 391man/man3/ansible.redhat_subscription.3
 392man/man3/ansible.redis.3
260man/man3/ansible.rhn_channel.3 393man/man3/ansible.rhn_channel.3
 394man/man3/ansible.rhn_register.3
 395man/man3/ansible.riak.3
 396man/man3/ansible.route53.3
 397man/man3/ansible.rpm_key.3
261man/man3/ansible.s3.3 398man/man3/ansible.s3.3
262man/man3/ansible.script.3 399man/man3/ansible.script.3
263man/man3/ansible.seboolean.3 400man/man3/ansible.seboolean.3
264man/man3/ansible.selinux.3 401man/man3/ansible.selinux.3
265man/man3/ansible.service.3 402man/man3/ansible.service.3
 403man/man3/ansible.set_fact.3
266man/man3/ansible.setup.3 404man/man3/ansible.setup.3
267man/man3/ansible.shell.3 405man/man3/ansible.shell.3
268man/man3/ansible.slurp.3 406man/man3/ansible.slurp.3
 407man/man3/ansible.stat.3
269man/man3/ansible.subversion.3 408man/man3/ansible.subversion.3
270man/man3/ansible.supervisorctl.3 409man/man3/ansible.supervisorctl.3
271man/man3/ansible.svr4pkg.3 410man/man3/ansible.svr4pkg.3
 411man/man3/ansible.swdepot.3
 412man/man3/ansible.synchronize.3
272man/man3/ansible.sysctl.3 413man/man3/ansible.sysctl.3
273man/man3/ansible.template.3 414man/man3/ansible.template.3
 415man/man3/ansible.unarchive.3
274man/man3/ansible.uri.3 416man/man3/ansible.uri.3
 417man/man3/ansible.urpmi.3
275man/man3/ansible.user.3 418man/man3/ansible.user.3
276man/man3/ansible.vagrant.3 
277man/man3/ansible.virt.3 419man/man3/ansible.virt.3
278man/man3/ansible.wait_for.3 420man/man3/ansible.wait_for.3
 421man/man3/ansible.xattr.3
279man/man3/ansible.yum.3 422man/man3/ansible.yum.3
280man/man3/ansible.zfs.3 423man/man3/ansible.zfs.3
281share/ansible/add_host 424man/man3/ansible.zypper.3
282share/ansible/apt 425man/man3/ansible.zypper_repository.3
283share/ansible/apt_key 426share/ansible/cloud/cloudformation
284share/ansible/apt_repository 427share/ansible/cloud/digital_ocean
285share/ansible/assemble 428share/ansible/cloud/docker
286share/ansible/async_status 429share/ansible/cloud/ec2
287share/ansible/async_wrapper 430share/ansible/cloud/ec2_ami
288share/ansible/authorized_key 431share/ansible/cloud/ec2_eip
289share/ansible/bzr 432share/ansible/cloud/ec2_elb
290share/ansible/cloudformation 433share/ansible/cloud/ec2_facts
291share/ansible/command 434share/ansible/cloud/ec2_group
292share/ansible/copy 435share/ansible/cloud/ec2_tag
293share/ansible/cron 436share/ansible/cloud/ec2_vol
294share/ansible/debug 437share/ansible/cloud/ec2_vpc
295share/ansible/django_manage 438share/ansible/cloud/elasticache
296share/ansible/easy_install 439share/ansible/cloud/gc_storage
297share/ansible/ec2 440share/ansible/cloud/gce
298share/ansible/ec2_facts 441share/ansible/cloud/gce_lb
299share/ansible/ec2_vol 442share/ansible/cloud/gce_net
300share/ansible/facter 443share/ansible/cloud/gce_pd
301share/ansible/fail 444share/ansible/cloud/glance_image
302share/ansible/fetch 445share/ansible/cloud/keystone_user
303share/ansible/file 446share/ansible/cloud/linode
304share/ansible/fireball 447share/ansible/cloud/nova_compute
305share/ansible/gem 448share/ansible/cloud/nova_keypair
306share/ansible/get_url 449share/ansible/cloud/ovirt
307share/ansible/git 450share/ansible/cloud/quantum_floating_ip
308share/ansible/group 451share/ansible/cloud/quantum_floating_ip_associate
309share/ansible/group_by 452share/ansible/cloud/quantum_network
310share/ansible/hg 453share/ansible/cloud/quantum_router
311share/ansible/homebrew 454share/ansible/cloud/quantum_router_gateway
312share/ansible/ini_file 455share/ansible/cloud/quantum_router_interface
313share/ansible/lineinfile 456share/ansible/cloud/quantum_subnet
314share/ansible/lvg 457share/ansible/cloud/rax
315share/ansible/lvol 458share/ansible/cloud/rax_clb
316share/ansible/macports 459share/ansible/cloud/rax_clb_nodes
317share/ansible/mail 460share/ansible/cloud/rax_facts
318share/ansible/mongodb_user 461share/ansible/cloud/rax_network
319share/ansible/mount 462share/ansible/cloud/rds
320share/ansible/mysql_db 463share/ansible/cloud/route53
321share/ansible/mysql_user 464share/ansible/cloud/s3
322share/ansible/nagios 465share/ansible/cloud/virt
323share/ansible/netscaler 466share/ansible/commands/command
324share/ansible/ohai 467share/ansible/commands/raw
325share/ansible/openbsd_pkg 468share/ansible/commands/script
326share/ansible/opkg 469share/ansible/commands/shell
327share/ansible/pacman 470share/ansible/database/mongodb_user
328share/ansible/pause 471share/ansible/database/mysql_db
329share/ansible/ping 472share/ansible/database/mysql_replication
330share/ansible/pip 473share/ansible/database/mysql_user
331share/ansible/pkgin 474share/ansible/database/mysql_variables
332share/ansible/postgresql_db 475share/ansible/database/postgresql_db
333share/ansible/postgresql_user 476share/ansible/database/postgresql_privs
334share/ansible/rabbitmq_parameter 477share/ansible/database/postgresql_user
335share/ansible/rabbitmq_plugin 478share/ansible/database/redis
336share/ansible/rabbitmq_user 479share/ansible/database/riak
337share/ansible/rabbitmq_vhost 480share/ansible/files/acl
338share/ansible/raw 481share/ansible/files/assemble
339share/ansible/rhn_channel 482share/ansible/files/copy
340share/ansible/s3 483share/ansible/files/fetch
341share/ansible/script 484share/ansible/files/file
342share/ansible/seboolean 485share/ansible/files/ini_file
343share/ansible/selinux 486share/ansible/files/lineinfile
344share/ansible/service 487share/ansible/files/stat
345share/ansible/setup 488share/ansible/files/synchronize
346share/ansible/shell 489share/ansible/files/template
347share/ansible/slurp 490share/ansible/files/unarchive
348share/ansible/subversion 491share/ansible/files/xattr
349share/ansible/supervisorctl 492share/ansible/internal/async_status
350share/ansible/svr4pkg 493share/ansible/internal/async_wrapper
351share/ansible/sysctl 494share/ansible/inventory/add_host
352share/ansible/template 495share/ansible/inventory/group_by
353share/ansible/uri 496share/ansible/messaging/rabbitmq_parameter
354share/ansible/user 497share/ansible/messaging/rabbitmq_plugin
355share/ansible/vagrant 498share/ansible/messaging/rabbitmq_user
356share/ansible/virt 499share/ansible/messaging/rabbitmq_vhost
357share/ansible/wait_for 500share/ansible/monitoring/airbrake_deployment
358share/ansible/yum 501share/ansible/monitoring/boundary_meter
359share/ansible/zfs 502share/ansible/monitoring/datadog_event
 503share/ansible/monitoring/monit
 504share/ansible/monitoring/nagios
 505share/ansible/monitoring/newrelic_deployment
 506share/ansible/monitoring/pagerduty
 507share/ansible/monitoring/pingdom
 508share/ansible/net_infrastructure/arista_interface
 509share/ansible/net_infrastructure/arista_l2interface
 510share/ansible/net_infrastructure/arista_lag
 511share/ansible/net_infrastructure/arista_vlan
 512share/ansible/net_infrastructure/bigip_monitor_http
 513share/ansible/net_infrastructure/bigip_monitor_tcp
 514share/ansible/net_infrastructure/bigip_node
 515share/ansible/net_infrastructure/bigip_pool
 516share/ansible/net_infrastructure/bigip_pool_member
 517share/ansible/net_infrastructure/dnsmadeeasy
 518share/ansible/net_infrastructure/netscaler
 519share/ansible/net_infrastructure/openvswitch_bridge
 520share/ansible/net_infrastructure/openvswitch_port
 521share/ansible/network/get_url
 522share/ansible/network/slurp
 523share/ansible/network/uri
 524share/ansible/notification/campfire
 525share/ansible/notification/flowdock
 526share/ansible/notification/grove
 527share/ansible/notification/hipchat
 528share/ansible/notification/irc
 529share/ansible/notification/jabber
 530share/ansible/notification/mail
 531share/ansible/notification/mqtt
 532share/ansible/notification/osx_say
 533share/ansible/packaging/apt
 534share/ansible/packaging/apt_key
 535share/ansible/packaging/apt_repository
 536share/ansible/packaging/easy_install
 537share/ansible/packaging/gem
 538share/ansible/packaging/homebrew
 539share/ansible/packaging/macports
 540share/ansible/packaging/npm
 541share/ansible/packaging/openbsd_pkg
 542share/ansible/packaging/opkg
 543share/ansible/packaging/pacman
 544share/ansible/packaging/pip
 545share/ansible/packaging/pkgin
 546share/ansible/packaging/pkgng
 547share/ansible/packaging/pkgutil
 548share/ansible/packaging/portinstall
 549share/ansible/packaging/redhat_subscription
 550share/ansible/packaging/rhn_channel
 551share/ansible/packaging/rhn_register
 552share/ansible/packaging/rpm_key
 553share/ansible/packaging/svr4pkg
 554share/ansible/packaging/swdepot
 555share/ansible/packaging/urpmi
 556share/ansible/packaging/yum
 557share/ansible/packaging/zypper
 558share/ansible/packaging/zypper_repository
 559share/ansible/source_control/bzr
 560share/ansible/source_control/git
 561share/ansible/source_control/github_hooks
 562share/ansible/source_control/hg
 563share/ansible/source_control/subversion
 564share/ansible/system/authorized_key
 565share/ansible/system/cron
 566share/ansible/system/facter
 567share/ansible/system/filesystem
 568share/ansible/system/firewalld
 569share/ansible/system/group
 570share/ansible/system/hostname
 571share/ansible/system/kernel_blacklist
 572share/ansible/system/lvg
 573share/ansible/system/lvol
 574share/ansible/system/modprobe
 575share/ansible/system/mount
 576share/ansible/system/ohai
 577share/ansible/system/open_iscsi
 578share/ansible/system/ping
 579share/ansible/system/seboolean
 580share/ansible/system/selinux
 581share/ansible/system/service
 582share/ansible/system/setup
 583share/ansible/system/sysctl
 584share/ansible/system/user
 585share/ansible/system/zfs
 586share/ansible/utilities/accelerate
 587share/ansible/utilities/debug
 588share/ansible/utilities/fail
 589share/ansible/utilities/fireball
 590share/ansible/utilities/include_vars
 591share/ansible/utilities/pause
 592share/ansible/utilities/set_fact
 593share/ansible/utilities/wait_for
 594share/ansible/web_infrastructure/django_manage
 595share/ansible/web_infrastructure/ejabberd_user
 596share/ansible/web_infrastructure/htpasswd
 597share/ansible/web_infrastructure/jboss
 598share/ansible/web_infrastructure/supervisorctl
360share/examples/ansible/ansible.cfg 599share/examples/ansible/ansible.cfg
361share/examples/ansible/hosts 600share/examples/ansible/hosts
362share/examples/ansible/playbooks/ansible_pull.yml 
363share/examples/ansible/playbooks/batch_size_control.yml 
364share/examples/ansible/playbooks/complex_args.yml 
365share/examples/ansible/playbooks/conditionals_part1.yml 
366share/examples/ansible/playbooks/conditionals_part2.yml 
367share/examples/ansible/playbooks/conditionals_part3.yml 
368share/examples/ansible/playbooks/custom_filters.yml 
369share/examples/ansible/playbooks/delegation.yml 
370share/examples/ansible/playbooks/environment.yml 
371share/examples/ansible/playbooks/eucalyptus-ec2.yml 
372share/examples/ansible/playbooks/file_secontext.yml 
373share/examples/ansible/playbooks/filter_plugins/custom_plugins.py 
374share/examples/ansible/playbooks/get_url.yml 
375share/examples/ansible/playbooks/group_by.yml 
376share/examples/ansible/playbooks/group_commands.yml 
377share/examples/ansible/playbooks/handlers/handlers.yml 
378share/examples/ansible/playbooks/intermediate_example.yml 
379share/examples/ansible/playbooks/intro_example.yml 
380share/examples/ansible/playbooks/loop_nested.yml 
381share/examples/ansible/playbooks/loop_plugins.yml 
382share/examples/ansible/playbooks/loop_with_items.yml 
383share/examples/ansible/playbooks/mysql.yml 
384share/examples/ansible/playbooks/nested_playbooks.yml 
385share/examples/ansible/playbooks/netscaler.yml 
386share/examples/ansible/playbooks/postgresql.yml 
387share/examples/ansible/playbooks/prompts.yml 
388share/examples/ansible/playbooks/rabbitmq.yml 
389share/examples/ansible/playbooks/register_logic.yml 
390share/examples/ansible/playbooks/selective_file_sources.yml 
391share/examples/ansible/playbooks/tags.yml 
392share/examples/ansible/playbooks/tasks/base.yml 
393share/examples/ansible/playbooks/templates/custom-filters.j2 
394share/examples/ansible/playbooks/templates/etc_cron.d_ansible-pull.j2 
395share/examples/ansible/playbooks/templates/etc_logrotate.d_ansible-pull.j2 
396share/examples/ansible/playbooks/templates/foo.j2 
397share/examples/ansible/playbooks/templates/hostvars.j2 
398share/examples/ansible/playbooks/user_commands.yml 
399share/examples/ansible/playbooks/vars/CentOS.yml 
400share/examples/ansible/playbooks/vars/defaults.yml 
401share/examples/ansible/playbooks/vars/external_vars.yml 
402share/examples/ansible/playbooks/zfs.yml 
403@pkgdir etc/ansible 601@pkgdir etc/ansible

cvs diff -r1.4 -r1.5 pkgsrc/sysutils/ansible/distinfo (expand / switch to unified diff)

--- pkgsrc/sysutils/ansible/distinfo 2013/04/13 17:51:57 1.4
+++ pkgsrc/sysutils/ansible/distinfo 2013/12/02 22:54:46 1.5
@@ -1,17 +1,13 @@ @@ -1,17 +1,13 @@
1$NetBSD: distinfo,v 1.4 2013/04/13 17:51:57 riz Exp $ 1$NetBSD: distinfo,v 1.5 2013/12/02 22:54:46 hubertf Exp $
2 2
3SHA1 (ansible-1.1.tar.gz) = fa1009e80b624945675bbaba690b895a1ff050fd 3SHA1 (ansible-1.4.1.tar.gz) = 670fda6b9c4869820d80c6e873604ec759dfa03c
4RMD160 (ansible-1.1.tar.gz) = 220dd91db3ab0d6df5dec456448e22d436077f3d 4RMD160 (ansible-1.4.1.tar.gz) = c1d2248244d6799e8ea79e5bfb3e96579c066594
5Size (ansible-1.1.tar.gz) = 302115 bytes 5Size (ansible-1.4.1.tar.gz) = 571296 bytes
6SHA1 (patch-docs_man_man1_ansible-playbook.1) = 33ce57bccb6cb29e978871a868bf26ca17d87660 6SHA1 (patch-examples_ansible.cfg) = 2a2e3841735df3bddeb6e569e2fdc659ae305053
7SHA1 (patch-docs_man_man1_ansible.1) = 266a520f8f227686cc84b8a3e9b6fac8e20e1247 7SHA1 (patch-lib_ansible_callbacks.py) = bbede537853ab35f31727b72cda41835c7700074
8SHA1 (patch-examples_ansible.cfg) = 631236fadaadfd28d71b7bc7cce33e62691ee407 8SHA1 (patch-lib_ansible_constants.py) = eb9379937555b28f8b0f7932d54042432197c59d
9SHA1 (patch-lib_ansible_callbacks.py) = 607809cf64a676ef91a70b915e97ac87b8ddd31b 9SHA1 (patch-library-system-ping) = 74f4df32948d9a52998420a01f38828dd00c31b6
10SHA1 (patch-lib_ansible_constants.py) = 51171c84680b18a2d1ff2401cc1fd08e009aa83c 10SHA1 (patch-library_database_riak) = 7efb167fd9a0e2bd9c7ac5fad3b426c1aa6d5272
11SHA1 (patch-library_mysql_db) = 45e782d41c3e2bc9e462441205f894e7089d798a 11SHA1 (patch-library_monitoring_nagios) = a677946b5c83bab4c3fa3c8d078b28d8abdd7030
12SHA1 (patch-library_ping) = 6bb9b946df3a44ac938eee7e752bf2149936b8e6 12SHA1 (patch-library_packaging_pkgin) = 247f583e3be5cd28462cd274d640ac44652fac50
13SHA1 (patch-library_pkgin) = 4b57890efa9145c0b2b68c2c75c990618488d824 13SHA1 (patch-library_system_setup) = d87259d0585f750b8f7baf43cc4254138bbbcf72
14SHA1 (patch-library_raw) = 897aa5b8e5abadd23adc6de178cbec417c43e540 
15SHA1 (patch-library_setup) = 7489a5c905916cc1559db15b730a1a93cb782971 
16SHA1 (patch-library_slurp) = 54a021519554c3eb95daf9396c32d6ec559ddab8 
17SHA1 (patch-library_virt) = b01c7b2d7cd49ad7720d3a1430d7bba41673d2a6 

File Deleted: pkgsrc/sysutils/ansible/patches/Attic/patch-docs_man_man1_ansible-playbook.1

File Deleted: pkgsrc/sysutils/ansible/patches/Attic/patch-docs_man_man1_ansible.1

File Deleted: pkgsrc/sysutils/ansible/patches/Attic/patch-library_mysql_db

File Deleted: pkgsrc/sysutils/ansible/patches/Attic/patch-library_pkgin

File Deleted: pkgsrc/sysutils/ansible/patches/Attic/patch-library_setup

File Deleted: pkgsrc/sysutils/ansible/patches/Attic/patch-library_virt

cvs diff -r1.1 -r1.2 pkgsrc/sysutils/ansible/patches/Attic/patch-examples_ansible.cfg (expand / switch to unified diff)

--- pkgsrc/sysutils/ansible/patches/Attic/patch-examples_ansible.cfg 2013/02/26 17:42:59 1.1
+++ pkgsrc/sysutils/ansible/patches/Attic/patch-examples_ansible.cfg 2013/12/02 22:54:46 1.2
@@ -1,43 +1,41 @@ @@ -1,43 +1,41 @@
1$NetBSD: patch-examples_ansible.cfg,v 1.1 2013/02/26 17:42:59 riz Exp $ 1$NetBSD: patch-examples_ansible.cfg,v 1.2 2013/12/02 22:54:46 hubertf Exp $
2 2
3--- examples/ansible.cfg.orig 2013-02-25 11:33:44.000000000 -0800 3--- examples/ansible.cfg.orig 2013-11-19 19:12:32.000000000 +0000
4+++ examples/ansible.cfg 2013-02-25 11:36:25.000000000 -0800 4+++ examples/ansible.cfg
5@@ -1,16 +1,16 @@ 5@@ -4,14 +4,14 @@
6 # config file for ansible -- http://ansible.github.com 6 # nearly all parameters can be overridden in ansible-playbook
7 # nearly all parameters can be overridden in ansible-playbook or with command line flags 7 # or with command line flags. ansible will read ~/.ansible.cfg,
8-# ansible will read ~/.ansible.cfg or /etc/ansible/ansible.cfg, whichever it finds first 8 # ansible.cfg in the current working directory or
9+# ansible will read ~/.ansible.cfg or @PKG_SYSCONFDIR@/ansible/ansible.cfg, whichever it finds first 9-# /etc/ansible/ansible.cfg, whichever it finds first
 10+# @PKG_SYSCONFDIR@/ansible/ansible.cfg, whichever it finds first
10  11
11 [defaults] 12 [defaults]
12  13
13 # location of inventory file, eliminates need to specify -i 14 # some basic default values...
14  15
15-hostfile = /etc/ansible/hosts 16-hostfile = /etc/ansible/hosts
16+hostfile = @PKG_SYSCONFDIR@/ansible/hosts 17-library = /usr/share/ansible
17  18+hostfile = @PKG_SYSCONFDIR@/ansible/hosts
18 # location of ansible library, eliminates need to specify --module-path 19+library = @PREFIX@/share/ansible
19  20 remote_tmp = $HOME/.ansible/tmp
20-library = /usr/share/ansible 21 pattern = *
21+library = @PREFIX@/share/ansible 22 forks = 5
22  23@@ -87,12 +87,12 @@ ansible_managed = Ansible managed: {file
23 # default module name used in /usr/bin/ansible when -m is not specified 24 #error_on_undefined_vars = False
24  
25@@ -104,12 +104,12 @@ 
26  
27 # additional plugin paths for non-core plugins 
28  25
 26 # set plugin path directories here, seperate with colons
29-action_plugins = /usr/share/ansible_plugins/action_plugins 27-action_plugins = /usr/share/ansible_plugins/action_plugins
30-callback_plugins = /usr/share/ansible_plugins/callback_plugins 28-callback_plugins = /usr/share/ansible_plugins/callback_plugins
31-connection_plugins = /usr/share/ansible_plugins/connection_plugins 29-connection_plugins = /usr/share/ansible_plugins/connection_plugins
32-lookup_plugins = /usr/share/ansible_plugins/lookup_plugins 30-lookup_plugins = /usr/share/ansible_plugins/lookup_plugins
33-vars_plugins = /usr/share/ansible_plugins/vars_plugins 31-vars_plugins = /usr/share/ansible_plugins/vars_plugins
34-filter_plugins = /usr/share/ansible_plugins/filter_plugins 32-filter_plugins = /usr/share/ansible_plugins/filter_plugins
35+action_plugins = @PREFIX@/share/ansible_plugins/action_plugins 33+action_plugins = @PREFIX@/share/ansible_plugins/action_plugins
36+callback_plugins = @PREFIX@/share/ansible_plugins/callback_plugins 34+callback_plugins = @PREFIX@/share/ansible_plugins/callback_plugins
37+connection_plugins = @PREFIX@/share/ansible_plugins/connection_plugins 35+connection_plugins = @PREFIX@/share/ansible_plugins/connection_plugins
38+lookup_plugins = @PREFIX@/share/ansible_plugins/lookup_plugins 36+lookup_plugins = @PREFIX@/share/ansible_plugins/lookup_plugins
39+vars_plugins = @PREFIX@/share/ansible_plugins/vars_plugins 37+vars_plugins = @PREFIX@/share/ansible_plugins/vars_plugins
40+filter_plugins = @PREFIX@/share/ansible_plugins/filter_plugins 38+filter_plugins = @PREFIX@/share/ansible_plugins/filter_plugins
41  39
42 [paramiko_connection] 40 # don't like cows? that's unfortunate.
43  41 # set to 1 if you don't want cowsay support or export ANSIBLE_NOCOWS=1

cvs diff -r1.2 -r1.3 pkgsrc/sysutils/ansible/patches/Attic/patch-lib_ansible_callbacks.py (expand / switch to unified diff)

--- pkgsrc/sysutils/ansible/patches/Attic/patch-lib_ansible_callbacks.py 2013/04/13 17:51:57 1.2
+++ pkgsrc/sysutils/ansible/patches/Attic/patch-lib_ansible_callbacks.py 2013/12/02 22:54:46 1.3
@@ -1,16 +1,16 @@ @@ -1,16 +1,16 @@
1$NetBSD: patch-lib_ansible_callbacks.py,v 1.2 2013/04/13 17:51:57 riz Exp $ 1$NetBSD: patch-lib_ansible_callbacks.py,v 1.3 2013/12/02 22:54:46 hubertf Exp $
2 2
3--- lib/ansible/callbacks.py.orig 2013-03-30 16:29:28.000000000 -0700 3--- lib/ansible/callbacks.py.orig 2013-11-19 19:12:32.000000000 +0000
4+++ lib/ansible/callbacks.py 2013-04-13 09:05:36.000000000 -0700 4+++ lib/ansible/callbacks.py
5@@ -30,9 +30,9 @@ 5@@ -55,9 +55,9 @@ def get_cowsay_info():
6 cowsay = "/usr/bin/cowsay" 6 cowsay = "/usr/bin/cowsay"
7 elif os.path.exists("/usr/games/cowsay"): 7 elif os.path.exists("/usr/games/cowsay"):
8 cowsay = "/usr/games/cowsay" 8 cowsay = "/usr/games/cowsay"
9-elif os.path.exists("/usr/local/bin/cowsay"): 9- elif os.path.exists("/usr/local/bin/cowsay"):
10+elif os.path.exists("@LOCALBASE@/bin/cowsay"): 10+ elif os.path.exists("@LOCALBASE@/bin/cowsay"):
11 # BSD path for cowsay 11 # BSD path for cowsay
12- cowsay = "/usr/local/bin/cowsay" 12- cowsay = "/usr/local/bin/cowsay"
13+ cowsay = "@LOCALBASE@/bin/cowsay" 13+ cowsay = "@LOCALBASE@/bin/cowsay"
14 elif os.path.exists("/opt/local/bin/cowsay"): 14 elif os.path.exists("/opt/local/bin/cowsay"):
15 # MacPorts path for cowsay 15 # MacPorts path for cowsay
16 cowsay = "/opt/local/bin/cowsay" 16 cowsay = "/opt/local/bin/cowsay"

cvs diff -r1.3 -r1.4 pkgsrc/sysutils/ansible/patches/Attic/patch-lib_ansible_constants.py (expand / switch to unified diff)

--- pkgsrc/sysutils/ansible/patches/Attic/patch-lib_ansible_constants.py 2013/04/13 17:51:57 1.3
+++ pkgsrc/sysutils/ansible/patches/Attic/patch-lib_ansible_constants.py 2013/12/02 22:54:46 1.4
@@ -1,48 +1,50 @@ @@ -1,48 +1,50 @@
1$NetBSD: patch-lib_ansible_constants.py,v 1.3 2013/04/13 17:51:57 riz Exp $ 1$NetBSD: patch-lib_ansible_constants.py,v 1.4 2013/12/02 22:54:46 hubertf Exp $
2 2
3--- lib/ansible/constants.py.orig 2013-03-04 13:18:12.000000000 -0800 3--- lib/ansible/constants.py.orig 2013-11-19 19:12:32.000000000 +0000
4+++ lib/ansible/constants.py 2013-04-13 09:48:31.000000000 -0700 4+++ lib/ansible/constants.py
5@@ -36,7 +36,7 @@ 5@@ -59,7 +59,7 @@ def load_config_file():
6 p = ConfigParser.ConfigParser() 6 p = ConfigParser.ConfigParser()
7 path1 = os.path.expanduser(os.environ.get('ANSIBLE_CONFIG', "~/.ansible.cfg")) 7 path1 = os.getcwd() + "/ansible.cfg"
8 path2 = os.getcwd() + "/ansible.cfg" 8 path2 = os.path.expanduser(os.environ.get('ANSIBLE_CONFIG', "~/.ansible.cfg"))
9- path3 = "/etc/ansible/ansible.cfg" 9- path3 = "/etc/ansible/ansible.cfg"
10+ path3 = "@PKG_SYSCONFDIR@/ansible/ansible.cfg" 10+ path3 = "@PKG_SYSCONFDIR@/ansible/ansible.cfg"
11  11
12 if os.path.exists(path1): 12 if os.path.exists(path1):
13 p.read(path1) 13 p.read(path1)
14@@ -64,13 +64,13 @@ 14@@ -88,7 +88,7 @@ if getattr(sys, "real_prefix", None):
15 if getattr(sys, "real_prefix", None): 15 # in a virtualenv
16 DIST_MODULE_PATH = os.path.join(sys.prefix, 'share/ansible/') 16 DIST_MODULE_PATH = os.path.join(sys.prefix, 'share/ansible/')
17 else: 17 else:
18- DIST_MODULE_PATH = '/usr/share/ansible/' 18- DIST_MODULE_PATH = '/usr/share/ansible/'
19+ DIST_MODULE_PATH = '@PREFIX@/share/ansible/'  19+ DIST_MODULE_PATH = '@PREFIX@/share/ansible/'
20  20
21 # sections in config file 21 # check all of these extensions when looking for yaml files for things like
 22 # group variables
 23@@ -98,7 +98,7 @@ YAML_FILENAME_EXTENSIONS = [ "", ".yml",
22 DEFAULTS='defaults' 24 DEFAULTS='defaults'
23  25
24 # configurable things 26 # configurable things
25-DEFAULT_HOST_LIST = shell_expand_path(get_config(p, DEFAULTS, 'hostfile', 'ANSIBLE_HOSTS', '/etc/ansible/hosts')) 27-DEFAULT_HOST_LIST = shell_expand_path(get_config(p, DEFAULTS, 'hostfile', 'ANSIBLE_HOSTS', '/etc/ansible/hosts'))
26+DEFAULT_HOST_LIST = shell_expand_path(get_config(p, DEFAULTS, 'hostfile', 'ANSIBLE_HOSTS', '@PKG_SYSCONFDIR@/ansible/hosts')) 28+DEFAULT_HOST_LIST = shell_expand_path(get_config(p, DEFAULTS, 'hostfile', 'ANSIBLE_HOSTS', '@PKG_SYSCONFDIR@/ansible/hosts'))
27 DEFAULT_MODULE_PATH = shell_expand_path(get_config(p, DEFAULTS, 'library', 'ANSIBLE_LIBRARY', DIST_MODULE_PATH)) 29 DEFAULT_MODULE_PATH = get_config(p, DEFAULTS, 'library', 'ANSIBLE_LIBRARY', DIST_MODULE_PATH)
 30 DEFAULT_ROLES_PATH = get_config(p, DEFAULTS, 'roles_path', 'ANSIBLE_ROLES_PATH', None)
28 DEFAULT_REMOTE_TMP = shell_expand_path(get_config(p, DEFAULTS, 'remote_tmp', 'ANSIBLE_REMOTE_TEMP', '$HOME/.ansible/tmp')) 31 DEFAULT_REMOTE_TMP = shell_expand_path(get_config(p, DEFAULTS, 'remote_tmp', 'ANSIBLE_REMOTE_TEMP', '$HOME/.ansible/tmp'))
29 DEFAULT_MODULE_NAME = get_config(p, DEFAULTS, 'module_name', None, 'command') 32@@ -128,12 +128,12 @@ DEFAULT_LEGACY_PLAYBOOK_VARIABLES = get_
30@@ -96,12 +96,12 @@ 
31 DEFAULT_HASH_BEHAVIOUR = get_config(p, DEFAULTS, 'hash_behaviour', 'ANSIBLE_HASH_BEHAVIOUR', 'replace') 
32 DEFAULT_JINJA2_EXTENSIONS = get_config(p, DEFAULTS, 'jinja2_extensions', 'ANSIBLE_JINJA2_EXTENSIONS', None) 33 DEFAULT_JINJA2_EXTENSIONS = get_config(p, DEFAULTS, 'jinja2_extensions', 'ANSIBLE_JINJA2_EXTENSIONS', None)
 34 DEFAULT_EXECUTABLE = get_config(p, DEFAULTS, 'executable', 'ANSIBLE_EXECUTABLE', '/bin/sh')
33  35
34-DEFAULT_ACTION_PLUGIN_PATH = shell_expand_path(get_config(p, DEFAULTS, 'action_plugins', 'ANSIBLE_ACTION_PLUGINS', '/usr/share/ansible_plugins/action_plugins')) 36-DEFAULT_ACTION_PLUGIN_PATH = get_config(p, DEFAULTS, 'action_plugins', 'ANSIBLE_ACTION_PLUGINS', '/usr/share/ansible_plugins/action_plugins')
35-DEFAULT_CALLBACK_PLUGIN_PATH = shell_expand_path(get_config(p, DEFAULTS, 'callback_plugins', 'ANSIBLE_CALLBACK_PLUGINS', '/usr/share/ansible_plugins/callback_plugins')) 37-DEFAULT_CALLBACK_PLUGIN_PATH = get_config(p, DEFAULTS, 'callback_plugins', 'ANSIBLE_CALLBACK_PLUGINS', '/usr/share/ansible_plugins/callback_plugins')
36-DEFAULT_CONNECTION_PLUGIN_PATH = shell_expand_path(get_config(p, DEFAULTS, 'connection_plugins', 'ANSIBLE_CONNECTION_PLUGINS', '/usr/share/ansible_plugins/connection_plugins')) 38-DEFAULT_CONNECTION_PLUGIN_PATH = get_config(p, DEFAULTS, 'connection_plugins', 'ANSIBLE_CONNECTION_PLUGINS', '/usr/share/ansible_plugins/connection_plugins')
37-DEFAULT_LOOKUP_PLUGIN_PATH = shell_expand_path(get_config(p, DEFAULTS, 'lookup_plugins', 'ANSIBLE_LOOKUP_PLUGINS', '/usr/share/ansible_plugins/lookup_plugins')) 39-DEFAULT_LOOKUP_PLUGIN_PATH = get_config(p, DEFAULTS, 'lookup_plugins', 'ANSIBLE_LOOKUP_PLUGINS', '/usr/share/ansible_plugins/lookup_plugins')
38-DEFAULT_VARS_PLUGIN_PATH = shell_expand_path(get_config(p, DEFAULTS, 'vars_plugins', 'ANSIBLE_VARS_PLUGINS', '/usr/share/ansible_plugins/vars_plugins')) 40-DEFAULT_VARS_PLUGIN_PATH = get_config(p, DEFAULTS, 'vars_plugins', 'ANSIBLE_VARS_PLUGINS', '/usr/share/ansible_plugins/vars_plugins')
39-DEFAULT_FILTER_PLUGIN_PATH = shell_expand_path(get_config(p, DEFAULTS, 'filter_plugins', 'ANSIBLE_FILTER_PLUGINS', '/usr/share/ansible_plugins/filter_plugins')) 41-DEFAULT_FILTER_PLUGIN_PATH = get_config(p, DEFAULTS, 'filter_plugins', 'ANSIBLE_FILTER_PLUGINS', '/usr/share/ansible_plugins/filter_plugins')
40+DEFAULT_ACTION_PLUGIN_PATH = shell_expand_path(get_config(p, DEFAULTS, 'action_plugins', 'ANSIBLE_ACTION_PLUGINS', '@PREFIX@/share/ansible_plugins/action_plugins')) 42+DEFAULT_ACTION_PLUGIN_PATH = get_config(p, DEFAULTS, 'action_plugins', 'ANSIBLE_ACTION_PLUGINS', '@PREFIX@/share/ansible_plugins/action_plugins')
41+DEFAULT_CALLBACK_PLUGIN_PATH = shell_expand_path(get_config(p, DEFAULTS, 'callback_plugins', 'ANSIBLE_CALLBACK_PLUGINS', '@PREFIX@/share/ansible_plugins/callback_plugins')) 43+DEFAULT_CALLBACK_PLUGIN_PATH = get_config(p, DEFAULTS, 'callback_plugins', 'ANSIBLE_CALLBACK_PLUGINS', '@PREFIX@/share/ansible_plugins/callback_plugins')
42+DEFAULT_CONNECTION_PLUGIN_PATH = shell_expand_path(get_config(p, DEFAULTS, 'connection_plugins', 'ANSIBLE_CONNECTION_PLUGINS', '@PREFIX@/share/ansible_plugins/connection_plugins')) 44+DEFAULT_CONNECTION_PLUGIN_PATH = get_config(p, DEFAULTS, 'connection_plugins', 'ANSIBLE_CONNECTION_PLUGINS', '@PREFIX@/share/ansible_plugins/connection_plugins')
43+DEFAULT_LOOKUP_PLUGIN_PATH = shell_expand_path(get_config(p, DEFAULTS, 'lookup_plugins', 'ANSIBLE_LOOKUP_PLUGINS', '@PREFIX@/share/ansible_plugins/lookup_plugins')) 45+DEFAULT_LOOKUP_PLUGIN_PATH = get_config(p, DEFAULTS, 'lookup_plugins', 'ANSIBLE_LOOKUP_PLUGINS', '@PREFIX@/share/ansible_plugins/lookup_plugins')
44+DEFAULT_VARS_PLUGIN_PATH = shell_expand_path(get_config(p, DEFAULTS, 'vars_plugins', 'ANSIBLE_VARS_PLUGINS', '@PREFIX@/share/ansible_plugins/vars_plugins')) 46+DEFAULT_VARS_PLUGIN_PATH = get_config(p, DEFAULTS, 'vars_plugins', 'ANSIBLE_VARS_PLUGINS', '@PREFIX@/share/ansible_plugins/vars_plugins')
45+DEFAULT_FILTER_PLUGIN_PATH = shell_expand_path(get_config(p, DEFAULTS, 'filter_plugins', 'ANSIBLE_FILTER_PLUGINS', '@PREFIX@/share/ansible_plugins/filter_plugins')) 47+DEFAULT_FILTER_PLUGIN_PATH = get_config(p, DEFAULTS, 'filter_plugins', 'ANSIBLE_FILTER_PLUGINS', '@PREFIX@/share/ansible_plugins/filter_plugins')
 48 DEFAULT_LOG_PATH = shell_expand_path(get_config(p, DEFAULTS, 'log_path', 'ANSIBLE_LOG_PATH', ''))
46  49
47 # non-configurable things 50 ANSIBLE_NOCOLOR = get_config(p, DEFAULTS, 'nocolor', 'ANSIBLE_NOCOLOR', None, boolean=True)
48 DEFAULT_SUDO_PASS = None 

File Added: pkgsrc/sysutils/ansible/patches/Attic/patch-library-system-ping
$NetBSD: patch-library-system-ping,v 1.1 2013/12/02 22:54:46 hubertf Exp $

--- library/system/ping.orig	2013-11-19 19:12:32.000000000 +0000
+++ library/system/ping
@@ -27,7 +27,7 @@ short_description: Try to connect to hos
 description:
    - A trivial test module, this module always returns C(pong) on successful
      contact. It does not make sense in playbooks, but it is useful from
-     C(/usr/bin/ansible)
+     C(@PREFIX@/ansible)
 options: {}
 author: Michael DeHaan
 '''

File Added: pkgsrc/sysutils/ansible/patches/Attic/patch-library_database_riak
$NetBSD: patch-library_database_riak,v 1.1 2013/12/02 22:54:46 hubertf Exp $

--- library/database/riak.orig	2013-09-13 20:37:23.000000000 +0000
+++ library/database/riak
@@ -110,7 +110,7 @@ def main():
         argument_spec=dict(
         command=dict(required=False, default=None, choices=[
                     'ping', 'kv_test', 'join', 'plan', 'commit']),
-        config_dir=dict(default='/etc/riak'),
+        config_dir=dict(default='@PKG_SYSCONFDIR@/riak'),
         http_conn=dict(required=False, default='127.0.0.1:8098'),
         target_node=dict(default='riak@127.0.0.1', required=False),
         wait_for_handoffs=dict(default=False, type='int'),

File Added: pkgsrc/sysutils/ansible/patches/Attic/patch-library_monitoring_nagios
$NetBSD: patch-library_monitoring_nagios,v 1.1 2013/12/02 22:54:46 hubertf Exp $

--- library/monitoring/nagios.orig	2013-08-22 02:50:24.000000000 +0000
+++ library/monitoring/nagios
@@ -125,6 +125,8 @@ import os.path
 
 def which_cmdfile():
     locations = [
+        # pkgsrc - any OS
+        '@PKG_SYSCONFDIR@/nagios/nagios.cfg',
         # rhel
         '/etc/nagios/nagios.cfg',
         # debian
@@ -132,7 +134,7 @@ def which_cmdfile():
         # older debian
         '/etc/nagios2/nagios.cfg',
         # bsd, solaris
-        '/usr/local/etc/nagios/nagios.cfg',
+        '/etc/nagios/nagios.cfg',
         # groundwork it monitoring
         '/usr/local/groundwork/nagios/etc/nagios.cfg',
         # open monitoring distribution
@@ -142,6 +144,8 @@ def which_cmdfile():
         '/usr/local/nagios/nagios.cfg',
         '/opt/nagios/etc/nagios.cfg',
         '/opt/nagios/nagios.cfg',
+        # pkgsrc - any OS
+        '@PKG_SYSCONFDIR@/icinga/icinga.cfg',
         # icinga on debian/ubuntu
         '/etc/icinga/icinga.cfg',
         # icinga installed from source (default location)

File Added: pkgsrc/sysutils/ansible/patches/Attic/patch-library_packaging_pkgin
$NetBSD: patch-library_packaging_pkgin,v 1.1 2013/12/02 22:54:46 hubertf Exp $

--- library//packaging/pkgin.orig	2013-08-22 02:50:24.000000000 +0000
+++ library//packaging/pkgin
@@ -150,7 +150,7 @@ def main():
                 state        = dict(default="present", choices=["present","absent"]),
                 name         = dict(aliases=["pkg"], required=True)))
 
-    pkgin_path = module.get_bin_path('pkgin', True, ['/opt/local/bin'])
+    pkgin_path = module.get_bin_path('pkgin', True, ['@LOCALBASE@/bin'])
 
     p = module.params
 

File Added: pkgsrc/sysutils/ansible/patches/Attic/patch-library_system_setup
$NetBSD: patch-library_system_setup,v 1.1 2013/12/02 22:54:46 hubertf Exp $

--- library/system/setup.orig	2013-11-19 19:12:32.000000000 +0000
+++ library/system/setup
@@ -58,7 +58,7 @@ options:
 description:
      - This module is automatically called by playbooks to gather useful
        variables about remote hosts that can be used in playbooks. It can also be
-       executed directly by C(/usr/bin/ansible) to check what variables are
+       executed directly by C(@LOCALBASE@/bin/ansible) to check what variables are
        available to a host. Ansible provides many I(facts) about the system,
        automatically.
 notes:
@@ -129,7 +129,7 @@ class Facts(object):
                  { 'path' : '/usr/sbin/urpmi',      'name' : 'urpmi' },
                  { 'path' : '/usr/bin/pacman',      'name' : 'pacman' },
                  { 'path' : '/bin/opkg',            'name' : 'opkg' },
-                 { 'path' : '/opt/local/bin/pkgin', 'name' : 'pkgin' },
+                 { 'path' : '@LOCALBASE@/bin/pkgin', 'name' : 'pkgin' },
                  { 'path' : '/opt/local/bin/port',  'name' : 'macports' },
                  { 'path' : '/sbin/apk',            'name' : 'apk' },
                  { 'path' : '/usr/sbin/pkg',        'name' : 'pkgng' },

File Deleted: pkgsrc/sysutils/ansible/patches/Attic/patch-library_ping

File Deleted: pkgsrc/sysutils/ansible/patches/Attic/patch-library_raw

File Deleted: pkgsrc/sysutils/ansible/patches/Attic/patch-library_slurp