pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/sysutils/ansible2 Update to ansible-2.3.0.0, with some...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/5485fb43c425
branches:  trunk
changeset: 362687:5485fb43c425
user:      jperkin <jperkin%pkgsrc.org@localhost>
date:      Mon May 22 11:31:34 2017 +0000

description:
Update to ansible-2.3.0.0, with some package cleanups.

Changes since 2.1.2.0, excluding module changes which are too numerous:

## 2.3 "Ramble On" - 2017-04-12

### Major Changes

* Documented and renamed the previously released 'single var vaulting' feature, allowing user to use vault encryption for single variables in a normal YAML vars file.
* Allow module_utils for custom modules to be placed in site-specific directories and shipped in roles
* On platforms that support it, use more modern system polling API instead of select in the ssh connection plugin.
  This removes one limitation on how many parallel forks are feasible on these systems.
* Windows/WinRM supports (experimental) become method "runas" to run modules and scripts as a different user, and to transparently access network resources.
* The WinRM connection plugin now uses pipelining when executing modules, resulting in significantly faster execution for small tasks.
* The WinRM connection plugin can now manage Kerberos tickets automatically when `ansible_winrm_transport=kerberos` and `ansible_user`/`ansible_password` are specified.
* Refactored/standardized most Windows modules, adding check-mode and diff support where possible.
* Extended Windows module API with parameter-type support, helper functions. (i.e. Expand-Environment, Add-Warning, Add-DeprecatationWarning)
* restructured how async works to allow it to apply to action plugins that choose to support it.

### Minor Changes

* The version and release facts for OpenBSD hosts were reversed.
  This has been changed so that version has the numeric portion and release has the name of the release.
* removed 'package' from default squash actions as not all package managers support it and it creates errors when using loops,
  any user can add back via config options if they don't use those package managers or otherwise avoid the errors.
* Blocks can now have a `name` field, to aid in playbook readability.
* default strategy is now configurable via ansible.cfg or environment variable.
* Added 'ansible_playbook_python' which contains 'current python executable', it can be blank in some cases in which Ansible is not invoked via the standard CLI (sys.executable limitation).
* Added 'metadata' to modules to enable classification
* ansible-doc now displays path to module and existing 'metadata'
* added optional 'piped' transfer method to ssh plugin for when scp and sftp are missing, ssh plugin is also now 'smarter' when using these options
* default controlpersist path is now a custom hash of host-port-user to avoid the socket path length errors for long hostnames
* Various fixes for Python3 compatibility
* Fixed issues with inventory formats not handling 'all' and 'ungrouped' in an uniform way.
* 'service' tasks can now use async again, we had lost this capability when changed into an action plugin.
* made any_errors_fatal inheritable from play to task and all other objects in between.
* many small performance improvements in inventory and variable handling and in task execution.

### Deprecations

* Specifying --tags (or --skip-tags) multiple times on the command line
  currently leads to the last one overriding all the previous ones. This behaviour is deprecated.
  In the future, if you specify --tags multiple times the tags will be merged together.
  From now on, using --tags multiple times on one command line will emit a deprecation warning.
  Setting the merge_multiple_cli_tags option to True in the ansible.cfg file will enable the new behaviour.
  In 2.4, the default will be to merge and you can enable the old overwriting behaviour via the config option.
  In 2.5, multiple --tags options will be merged with no way to go back to the old behaviour.

## 2.2.1 "The Battle of Evermore" - 2017-01-16

### Major Changes

* Security fix for CVE-2016-9587 - An attacker with control over a client system being managed by Ansible and the ability to send facts back to the Ansible server could use this flaw to execute 
arbitrary code on the Ansible server as the user and group Ansible is running as.

### Minor Changes

* Fixes a bug where undefined variables in with_* loops would cause a task failure even if the when condition would cause the task to be skipped.
* Fixed a bug related to roles where in certain situations a role may be run more than once despite not allowing duplicates.
* Fixed some additional bugs related to atomic_move for modules.
* Fixes multiple bugs related to field/attribute inheritance in nested blocks and includes, as well as task iteration logic during failures.
* Fixed pip installing packages into virtualenvs using the system pip instead of the virtualenv pip.
* Fixed dnf on systems with dnf-2.0.x (some changes in the API).
* Fixed traceback with dnf install of groups.
* Fixes a bug in which include_vars was not working with failed_when.
* Fix for include_vars only loading files with .yml, .yaml, and .json extensions.  This was only supposed to apply to loading a directory of vars files.
* Fixes several bugs related to properly incrementing the failed count in the host statistics.
* Fixes a bug with listening handlers which did not specify a `name` field.
* Fixes a bug with the `play_hosts` internal variable, so that it properly reflects the current list of hosts.
* Fixes a bug related to the v2_playbook_on_start callback method and legacy (v1) plugins.
* Fixes an openssh related process exit race condition, related to the fact that connections using ControlPersist do not close stderr.
* Improvements and fixes to OpenBSD fact gathering.
* Updated `make deb` to use pbuilder. Use `make local_deb` for the previous non-pbuilder build.
* Fixed Windows async to avoid blocking due to handle inheritance.
* Fixed bugs in the mount module on older Linux kernels and *BSDs
* Various minor fixes for Python 3
* Inserted some checks for jinja2-2.9, which can cause some issues with Ansible currently.

## 2.2 "The Battle of Evermore" - 2016-11-01

### Major Changes:

* Added the `listen` feature for modules. This feature allows tasks to more easily notify multiple handlers, as well as making it easier for handlers from decoupled roles to be notified.
* Major performance improvements.
* Added support for binary modules
* Added the ability to specify serial batches as a list (`serial: [1, 5, 10]`), which allows for so-called "canary" actions in one play.
* Fixed 'local type' plugins and actions to have a more predictable relative path. Fixes a regression of 1.9 (PR #16805). Existing users of 2.x will need to adjust related tasks.
* `meta` tasks can now use conditionals.
* `raw` now returns `changed: true` to be consistent with shell/command/script modules. Add `changed_when: false` to `raw` tasks to restore the pre-2.2 behavior if necessary.
* New privilege escalation become method `ksu`
* Windows `async:` support for long-running or background tasks.
* Windows `environment:` support for setting module environment vars in play/task.
* Added a new `meta` option: `end_play`, which can be used to skip to the end of a play.
* roles can now be included in the middle of a task list via the new `include_role` module, this also allows for making the role import 'loopable' and/or conditional.
* The service module has been changed to use system specific modules if they exist and fall back to the old service module if they cannot be found or detected.
* Add ability to specify what ssh client binary to use on the controller.  This
  can be configured via ssh_executable in the ansible config file or by setting
  ansible_ssh_executable as an inventory variable if different ones are needed
  for different hosts.
* Windows:
  * several facts were modified or renamed for consistency with their Unix counterparts, and many new facts were added. If your playbooks rely on any of the following keys, please ensure they are 
using the correct key names and/or values:
    - ansible_date_time.date (changed to use yyyy-mm-dd format instead of default system-locale format)
    - ansible_date_time.iso8601 (changed to UTC instead of local time)
    - ansible_distribution (now uses OS caption string, e.g.: "Microsoft Windows Server 2012 R2 Standard", version is still available on ansible_distribution_version)
    - ansible_totalmem (renamed to ansible_memtotal_mb, units changed to MB instead of bytes)
  * `async:` support for long-running or background tasks.
  * `environment:` support for setting module environment vars in play/task.
* Tech Preview: Work has been done to get Ansible running under Python3.  This work is not complete enough to depend upon in production environments but it is enough to begin testing it.
  * Most of the controller side should now work.  Users should be able to run python3 /usr/bin/ansible and python3 /usr/bin/ansible-playbook and have core features of ansible work.
  * A few of the most essential modules have been audited and are known to work.  Others work out of the box.
  * We are using unit and integration tests to help us port code and not regress later.  Even if you are not familiar with python you can still help by contributing integration tests (just ansible 
roles) that exercise more of the code to make sure it continues to run on both Python2 and Python3.
  * scp_if_ssh now supports True, False and "smart". "smart" is the default and will retry failed sftp transfers with scp.
* Network:
  * Refactored all network modules to remove duplicate code and take advantage of Ansiballz implementation
  * All functionality from *_template network modules have been combined into *_config module
  * Network *_command modules not longer allow configuration mode statements

### Minor Changes
* now -vvv shows exact path from which 'currently executing module' was picked up from.
* loop_control now has a label option to allow fine grained control what gets displayed per item
* loop_control now has a pause option to allow pausing for N seconds between loop iterations of a task.
* New privilege escalation become method `ksu`
* `raw` now returns `changed: true` to be consistent with shell/command/script modules. Add `changed_when: false` to `raw` tasks to restore the pre-2.2 behavior if necessary.
* removed previously deprecated ';' as host list separator.
* Only check if the default ssh client supports ControlPersist once instead of once for each host + task combination.
* Fix a problem with the pip module updating the python pip package itself.
* ansible_play_hosts is a new magic variable to provide a list of hosts in scope for the current play. Unlike play_hosts it is not subject to the 'serial' keyword.
* ansible_play_batch is a new magic variable meant to substitute the current play_hosts.

## 2.1.4 "The Song Remains the Same" - 2017-01-16

* Security fix for CVE-2016-9587 - An attacker with control over a client system being managed by Ansible and the ability to send facts back to the Ansible server could use this flaw to execute 
arbitrary code on the Ansible server as the user and group Ansible is running as.
* Fixed a bug with conditionals in loops, where undefined variables and other errors will defer raising the error until the conditional has been evaluated.
* Added a version check for jinja2-2.9, which does not fully work with Ansible currently.

## 2.1.3 "The Song Remains the Same" - 2016-11-04

* Security fix for CVE-2016-8628 - Command injection by compromised server via fact variables. In some situations, facts returned by modules could overwrite connection-based facts or some other 
special variables, leading to injected commands running on the Ansible controller as the user running Ansible (or via escalated permissions).
* Security fix for CVE-2016-8614 - apt_key module not properly validating keys in some situations.

###Minor Changes:

* The subversion module from core now marks its password parameter as no_log so
  the password is obscured when logging.
* The postgresql_lang and postgresql_ext modules from extras now mark
  login_password as no_log so the password is obscured when logging.
* Fixed several bugs related to locating files relative to role/playbook directories.
* Fixed a bug in the way hosts were tested for failed states, resulting in incorrectly skipped block sessions.
* Fixed a bug in the way our custom JSON encoder is used for the to_json* filters.
* Fixed some bugs related to the use of non-ascii characters in become passwords.
* Fixed a bug with Azure modules which may be using the latest rc6 library.
* Backported some docker_common fixes.

diffstat:

 sysutils/ansible2/Makefile |    30 +-
 sysutils/ansible2/PLIST    |  5882 ++++++++++++++++++++++++++++---------------
 sysutils/ansible2/distinfo |    10 +-
 3 files changed, 3885 insertions(+), 2037 deletions(-)

diffs (truncated from 6344 to 300 lines):

diff -r 8e59c85ace10 -r 5485fb43c425 sysutils/ansible2/Makefile
--- a/sysutils/ansible2/Makefile        Mon May 22 11:31:07 2017 +0000
+++ b/sysutils/ansible2/Makefile        Mon May 22 11:31:34 2017 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.2 2016/10/30 09:07:23 wen Exp $
+# $NetBSD: Makefile,v 1.3 2017/05/22 11:31:34 jperkin Exp $
 
-DISTNAME=      ansible-2.1.2.0
+DISTNAME=      ansible-2.3.0.0
 CATEGORIES=    python sysutils
 MASTER_SITES=  http://releases.ansible.com/ansible/
 
@@ -21,28 +21,18 @@
 
 SUBST_CLASSES+=                paths
 SUBST_STAGE.paths=     pre-configure
-SUBST_FILES.paths+=    contrib/inventory/*.py
 SUBST_FILES.paths+=    docs/man/man1/*.1
 SUBST_FILES.paths+=    examples/ansible.cfg examples/hosts
-SUBST_FILES.paths+=    lib/ansible/*.py lib/ansible/*/*.py lib/ansible/*/*/*.py
-SUBST_FILES.paths+=    lib/ansible/*/*/*/*.py
+SUBST_FILES.paths+=    lib/ansible/constants.py
+SUBST_FILES.paths+=    lib/ansible/cli/galaxy.py
+SUBST_FILES.paths+=    lib/ansible/module_utils/urls.py
+SUBST_FILES.paths+=    lib/ansible/modules/system/setup.py
+SUBST_FILES.paths+=    lib/ansible/utils/module_docs_fragments/cnos.py
+SUBST_FILES.paths+=    lib/ansible/utils/module_docs_fragments/openstack.py
 SUBST_MESSAGE.paths=   Fixing hardcoded paths.
 SUBST_SED.paths=       -e "s,/usr/share/ansible,${PREFIX}/share/ansible,g"
 SUBST_SED.paths+=      -e "s,/etc/ansible,${PKG_SYSCONFDIR},g"
 
-SUBST_CLASSES+=                pybin
-SUBST_STAGE.pybin=     pre-configure
-SUBST_FILES.pybin=     Makefile
-SUBST_MESSAGE.pybin=   Fixing path to PYTHONBIN.
-SUBST_SED.pybin=       -e "s,PYTHON=python,PYTHON=${PYTHONBIN},"
-
-REPLACE_PYTHON=                lib/ansible/*/*.py lib/ansible/*/*/*.py
-REPLACE_PYTHON+=       lib/ansible/*/*/*/*.py lib/ansible/*/*/*/*/*.py
-REPLACE_PYTHON+=       lib/ansible/*/*/*/*/*/*.py lib/ansible/*/*/*/*/*/*/*.py
-
-MANPAGES=              ansible-doc.1 ansible-galaxy.1 ansible-playbook.1 \
-                       ansible-pull.1 ansible-vault.1 ansible.1
-
 INSTALLATION_DIRS=     bin ${PKGMANDIR}/man1 ${PKG_SYSCONFDIR} ${EGDIR}
 OWN_DIRS=              ${PREFIX}/share/ansible
 
@@ -50,7 +40,8 @@
 CONF_FILES+=           ${EGDIR}/hosts ${PKG_SYSCONFDIR}/hosts
 
 post-install:
-.for f in ${MANPAGES}
+.for f in ansible-console.1 ansible-doc.1 ansible-galaxy.1 ansible-playbook.1 \
+         ansible-pull.1 ansible-vault.1 ansible.1
        ${INSTALL_MAN} ${WRKSRC}/docs/man/man1/${f} \
                ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/
 .endfor
@@ -60,4 +51,5 @@
 
 .include "../../lang/python/application.mk"
 .include "../../lang/python/egg.mk"
+.include "../../lang/python/tool.mk"
 .include "../../mk/bsd.pkg.mk"
diff -r 8e59c85ace10 -r 5485fb43c425 sysutils/ansible2/PLIST
--- a/sysutils/ansible2/PLIST   Mon May 22 11:31:07 2017 +0000
+++ b/sysutils/ansible2/PLIST   Mon May 22 11:31:34 2017 +0000
@@ -1,5 +1,6 @@
-@comment $NetBSD: PLIST,v 1.2 2016/10/30 09:07:23 wen Exp $
+@comment $NetBSD: PLIST,v 1.3 2017/05/22 11:31:34 jperkin Exp $
 bin/ansible
+bin/ansible-connection
 bin/ansible-console
 bin/ansible-doc
 bin/ansible-galaxy
@@ -41,6 +42,12 @@
 ${PYSITELIB}/ansible/compat/__init__.py
 ${PYSITELIB}/ansible/compat/__init__.pyc
 ${PYSITELIB}/ansible/compat/__init__.pyo
+${PYSITELIB}/ansible/compat/selectors/__init__.py
+${PYSITELIB}/ansible/compat/selectors/__init__.pyc
+${PYSITELIB}/ansible/compat/selectors/__init__.pyo
+${PYSITELIB}/ansible/compat/selectors/_selectors2.py
+${PYSITELIB}/ansible/compat/selectors/_selectors2.pyc
+${PYSITELIB}/ansible/compat/selectors/_selectors2.pyo
 ${PYSITELIB}/ansible/compat/six/__init__.py
 ${PYSITELIB}/ansible/compat/six/__init__.pyc
 ${PYSITELIB}/ansible/compat/six/__init__.pyo
@@ -71,6 +78,9 @@
 ${PYSITELIB}/ansible/executor/__init__.py
 ${PYSITELIB}/ansible/executor/__init__.pyc
 ${PYSITELIB}/ansible/executor/__init__.pyo
+${PYSITELIB}/ansible/executor/action_write_locks.py
+${PYSITELIB}/ansible/executor/action_write_locks.pyc
+${PYSITELIB}/ansible/executor/action_write_locks.pyo
 ${PYSITELIB}/ansible/executor/module_common.py
 ${PYSITELIB}/ansible/executor/module_common.pyc
 ${PYSITELIB}/ansible/executor/module_common.pyo
@@ -83,9 +93,6 @@
 ${PYSITELIB}/ansible/executor/process/__init__.py
 ${PYSITELIB}/ansible/executor/process/__init__.pyc
 ${PYSITELIB}/ansible/executor/process/__init__.pyo
-${PYSITELIB}/ansible/executor/process/result.py
-${PYSITELIB}/ansible/executor/process/result.pyc
-${PYSITELIB}/ansible/executor/process/result.pyo
 ${PYSITELIB}/ansible/executor/process/worker.py
 ${PYSITELIB}/ansible/executor/process/worker.pyc
 ${PYSITELIB}/ansible/executor/process/worker.pyo
@@ -107,10 +114,24 @@
 ${PYSITELIB}/ansible/galaxy/api.py
 ${PYSITELIB}/ansible/galaxy/api.pyc
 ${PYSITELIB}/ansible/galaxy/api.pyo
-${PYSITELIB}/ansible/galaxy/data/metadata_template.j2
-${PYSITELIB}/ansible/galaxy/data/readme
-${PYSITELIB}/ansible/galaxy/data/test_playbook.j2
-${PYSITELIB}/ansible/galaxy/data/travis.j2
+${PYSITELIB}/ansible/galaxy/data/container_enabled/README.md
+${PYSITELIB}/ansible/galaxy/data/container_enabled/defaults/main.yml.j2
+${PYSITELIB}/ansible/galaxy/data/container_enabled/handlers/main.yml.j2
+${PYSITELIB}/ansible/galaxy/data/container_enabled/meta/container.yml.j2
+${PYSITELIB}/ansible/galaxy/data/container_enabled/meta/main.yml.j2
+${PYSITELIB}/ansible/galaxy/data/container_enabled/tasks/main.yml.j2
+${PYSITELIB}/ansible/galaxy/data/container_enabled/tests/ansible.cfg
+${PYSITELIB}/ansible/galaxy/data/container_enabled/tests/inventory
+${PYSITELIB}/ansible/galaxy/data/container_enabled/tests/test.yml.j2
+${PYSITELIB}/ansible/galaxy/data/container_enabled/vars/main.yml.j2
+${PYSITELIB}/ansible/galaxy/data/default/README.md
+${PYSITELIB}/ansible/galaxy/data/default/defaults/main.yml.j2
+${PYSITELIB}/ansible/galaxy/data/default/handlers/main.yml.j2
+${PYSITELIB}/ansible/galaxy/data/default/meta/main.yml.j2
+${PYSITELIB}/ansible/galaxy/data/default/tasks/main.yml.j2
+${PYSITELIB}/ansible/galaxy/data/default/tests/inventory
+${PYSITELIB}/ansible/galaxy/data/default/tests/test.yml.j2
+${PYSITELIB}/ansible/galaxy/data/default/vars/main.yml.j2
 ${PYSITELIB}/ansible/galaxy/login.py
 ${PYSITELIB}/ansible/galaxy/login.pyc
 ${PYSITELIB}/ansible/galaxy/login.pyo
@@ -153,24 +174,72 @@
 ${PYSITELIB}/ansible/module_utils/__init__.py
 ${PYSITELIB}/ansible/module_utils/__init__.pyc
 ${PYSITELIB}/ansible/module_utils/__init__.pyo
+${PYSITELIB}/ansible/module_utils/_text.py
+${PYSITELIB}/ansible/module_utils/_text.pyc
+${PYSITELIB}/ansible/module_utils/_text.pyo
 ${PYSITELIB}/ansible/module_utils/a10.py
 ${PYSITELIB}/ansible/module_utils/a10.pyc
 ${PYSITELIB}/ansible/module_utils/a10.pyo
+${PYSITELIB}/ansible/module_utils/ansible_tower.py
+${PYSITELIB}/ansible/module_utils/ansible_tower.pyc
+${PYSITELIB}/ansible/module_utils/ansible_tower.pyo
+${PYSITELIB}/ansible/module_utils/aos.py
+${PYSITELIB}/ansible/module_utils/aos.pyc
+${PYSITELIB}/ansible/module_utils/aos.pyo
 ${PYSITELIB}/ansible/module_utils/api.py
 ${PYSITELIB}/ansible/module_utils/api.pyc
 ${PYSITELIB}/ansible/module_utils/api.pyo
+${PYSITELIB}/ansible/module_utils/asa.py
+${PYSITELIB}/ansible/module_utils/asa.pyc
+${PYSITELIB}/ansible/module_utils/asa.pyo
+${PYSITELIB}/ansible/module_utils/avi.py
+${PYSITELIB}/ansible/module_utils/avi.pyc
+${PYSITELIB}/ansible/module_utils/avi.pyo
 ${PYSITELIB}/ansible/module_utils/azure_rm_common.py
 ${PYSITELIB}/ansible/module_utils/azure_rm_common.pyc
 ${PYSITELIB}/ansible/module_utils/azure_rm_common.pyo
 ${PYSITELIB}/ansible/module_utils/basic.py
 ${PYSITELIB}/ansible/module_utils/basic.pyc
 ${PYSITELIB}/ansible/module_utils/basic.pyo
+${PYSITELIB}/ansible/module_utils/bigswitch_utils.py
+${PYSITELIB}/ansible/module_utils/bigswitch_utils.pyc
+${PYSITELIB}/ansible/module_utils/bigswitch_utils.pyo
+${PYSITELIB}/ansible/module_utils/cloud.py
+${PYSITELIB}/ansible/module_utils/cloud.pyc
+${PYSITELIB}/ansible/module_utils/cloud.pyo
+${PYSITELIB}/ansible/module_utils/cloudengine.py
+${PYSITELIB}/ansible/module_utils/cloudengine.pyc
+${PYSITELIB}/ansible/module_utils/cloudengine.pyo
 ${PYSITELIB}/ansible/module_utils/cloudstack.py
 ${PYSITELIB}/ansible/module_utils/cloudstack.pyc
 ${PYSITELIB}/ansible/module_utils/cloudstack.pyo
+${PYSITELIB}/ansible/module_utils/cnos.py
+${PYSITELIB}/ansible/module_utils/cnos.pyc
+${PYSITELIB}/ansible/module_utils/cnos.pyo
+${PYSITELIB}/ansible/module_utils/cnos_devicerules.py
+${PYSITELIB}/ansible/module_utils/cnos_devicerules.pyc
+${PYSITELIB}/ansible/module_utils/cnos_devicerules.pyo
+${PYSITELIB}/ansible/module_utils/cnos_errorcodes.py
+${PYSITELIB}/ansible/module_utils/cnos_errorcodes.pyc
+${PYSITELIB}/ansible/module_utils/cnos_errorcodes.pyo
+${PYSITELIB}/ansible/module_utils/connection.py
+${PYSITELIB}/ansible/module_utils/connection.pyc
+${PYSITELIB}/ansible/module_utils/connection.pyo
 ${PYSITELIB}/ansible/module_utils/database.py
 ${PYSITELIB}/ansible/module_utils/database.pyc
 ${PYSITELIB}/ansible/module_utils/database.pyo
+${PYSITELIB}/ansible/module_utils/dellos10.py
+${PYSITELIB}/ansible/module_utils/dellos10.pyc
+${PYSITELIB}/ansible/module_utils/dellos10.pyo
+${PYSITELIB}/ansible/module_utils/dellos6.py
+${PYSITELIB}/ansible/module_utils/dellos6.pyc
+${PYSITELIB}/ansible/module_utils/dellos6.pyo
+${PYSITELIB}/ansible/module_utils/dellos9.py
+${PYSITELIB}/ansible/module_utils/dellos9.pyc
+${PYSITELIB}/ansible/module_utils/dellos9.pyo
+${PYSITELIB}/ansible/module_utils/dimensiondata.py
+${PYSITELIB}/ansible/module_utils/dimensiondata.pyc
+${PYSITELIB}/ansible/module_utils/dimensiondata.pyo
 ${PYSITELIB}/ansible/module_utils/docker_common.py
 ${PYSITELIB}/ansible/module_utils/docker_common.pyc
 ${PYSITELIB}/ansible/module_utils/docker_common.pyo
@@ -180,36 +249,78 @@
 ${PYSITELIB}/ansible/module_utils/eos.py
 ${PYSITELIB}/ansible/module_utils/eos.pyc
 ${PYSITELIB}/ansible/module_utils/eos.pyo
-${PYSITELIB}/ansible/module_utils/f5.py
-${PYSITELIB}/ansible/module_utils/f5.pyc
-${PYSITELIB}/ansible/module_utils/f5.pyo
+${PYSITELIB}/ansible/module_utils/exoscale.py
+${PYSITELIB}/ansible/module_utils/exoscale.pyc
+${PYSITELIB}/ansible/module_utils/exoscale.pyo
+${PYSITELIB}/ansible/module_utils/f5_cli.py
+${PYSITELIB}/ansible/module_utils/f5_cli.pyc
+${PYSITELIB}/ansible/module_utils/f5_cli.pyo
+${PYSITELIB}/ansible/module_utils/f5_utils.py
+${PYSITELIB}/ansible/module_utils/f5_utils.pyc
+${PYSITELIB}/ansible/module_utils/f5_utils.pyo
 ${PYSITELIB}/ansible/module_utils/facts.py
 ${PYSITELIB}/ansible/module_utils/facts.pyc
 ${PYSITELIB}/ansible/module_utils/facts.pyo
+${PYSITELIB}/ansible/module_utils/fortios.py
+${PYSITELIB}/ansible/module_utils/fortios.pyc
+${PYSITELIB}/ansible/module_utils/fortios.pyo
+${PYSITELIB}/ansible/module_utils/gcdns.py
+${PYSITELIB}/ansible/module_utils/gcdns.pyc
+${PYSITELIB}/ansible/module_utils/gcdns.pyo
 ${PYSITELIB}/ansible/module_utils/gce.py
 ${PYSITELIB}/ansible/module_utils/gce.pyc
 ${PYSITELIB}/ansible/module_utils/gce.pyo
+${PYSITELIB}/ansible/module_utils/gcp.py
+${PYSITELIB}/ansible/module_utils/gcp.pyc
+${PYSITELIB}/ansible/module_utils/gcp.pyo
+${PYSITELIB}/ansible/module_utils/infinibox.py
+${PYSITELIB}/ansible/module_utils/infinibox.pyc
+${PYSITELIB}/ansible/module_utils/infinibox.pyo
 ${PYSITELIB}/ansible/module_utils/ios.py
 ${PYSITELIB}/ansible/module_utils/ios.pyc
 ${PYSITELIB}/ansible/module_utils/ios.pyo
 ${PYSITELIB}/ansible/module_utils/iosxr.py
 ${PYSITELIB}/ansible/module_utils/iosxr.pyc
 ${PYSITELIB}/ansible/module_utils/iosxr.pyo
+${PYSITELIB}/ansible/module_utils/ipa.py
+${PYSITELIB}/ansible/module_utils/ipa.pyc
+${PYSITELIB}/ansible/module_utils/ipa.pyo
 ${PYSITELIB}/ansible/module_utils/ismount.py
 ${PYSITELIB}/ansible/module_utils/ismount.pyc
 ${PYSITELIB}/ansible/module_utils/ismount.pyo
+${PYSITELIB}/ansible/module_utils/json_utils.py
+${PYSITELIB}/ansible/module_utils/json_utils.pyc
+${PYSITELIB}/ansible/module_utils/json_utils.pyo
 ${PYSITELIB}/ansible/module_utils/junos.py
 ${PYSITELIB}/ansible/module_utils/junos.pyc
 ${PYSITELIB}/ansible/module_utils/junos.pyo
 ${PYSITELIB}/ansible/module_utils/known_hosts.py
 ${PYSITELIB}/ansible/module_utils/known_hosts.pyc
 ${PYSITELIB}/ansible/module_utils/known_hosts.pyo
+${PYSITELIB}/ansible/module_utils/lxd.py
+${PYSITELIB}/ansible/module_utils/lxd.pyc
+${PYSITELIB}/ansible/module_utils/lxd.pyo
 ${PYSITELIB}/ansible/module_utils/mysql.py
 ${PYSITELIB}/ansible/module_utils/mysql.pyc
 ${PYSITELIB}/ansible/module_utils/mysql.pyo
+${PYSITELIB}/ansible/module_utils/netapp.py
+${PYSITELIB}/ansible/module_utils/netapp.pyc
+${PYSITELIB}/ansible/module_utils/netapp.pyo
 ${PYSITELIB}/ansible/module_utils/netcfg.py
 ${PYSITELIB}/ansible/module_utils/netcfg.pyc
 ${PYSITELIB}/ansible/module_utils/netcfg.pyo
+${PYSITELIB}/ansible/module_utils/netcli.py
+${PYSITELIB}/ansible/module_utils/netcli.pyc
+${PYSITELIB}/ansible/module_utils/netcli.pyo
+${PYSITELIB}/ansible/module_utils/netconf.py
+${PYSITELIB}/ansible/module_utils/netconf.pyc
+${PYSITELIB}/ansible/module_utils/netconf.pyo
+${PYSITELIB}/ansible/module_utils/network.py
+${PYSITELIB}/ansible/module_utils/network.pyc
+${PYSITELIB}/ansible/module_utils/network.pyo
+${PYSITELIB}/ansible/module_utils/network_common.py
+${PYSITELIB}/ansible/module_utils/network_common.pyc
+${PYSITELIB}/ansible/module_utils/network_common.pyo
 ${PYSITELIB}/ansible/module_utils/nxos.py
 ${PYSITELIB}/ansible/module_utils/nxos.pyc
 ${PYSITELIB}/ansible/module_utils/nxos.pyo
@@ -219,7 +330,19 @@
 ${PYSITELIB}/ansible/module_utils/openswitch.py
 ${PYSITELIB}/ansible/module_utils/openswitch.pyc
 ${PYSITELIB}/ansible/module_utils/openswitch.pyo
+${PYSITELIB}/ansible/module_utils/ordnance.py
+${PYSITELIB}/ansible/module_utils/ordnance.pyc
+${PYSITELIB}/ansible/module_utils/ordnance.pyo
+${PYSITELIB}/ansible/module_utils/ovirt.py
+${PYSITELIB}/ansible/module_utils/ovirt.pyc



Home | Main Index | Thread Index | Old Index