pkgsrc-WIP-changes archive

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

Update ansible to version 2.2.0.0.



Module Name:	pkgsrc-wip
Committed By:	Havard Eidnes <he%trane.uninett.no@localhost>
Pushed By:	he
Date:		Mon Jan 9 13:00:41 2017 +0100
Changeset:	532156b520d22b85ac91096ab7ae76ddbab6b984

Modified Files:
	ansible/Makefile
	ansible/PLIST
	ansible/distinfo
	ansible/patches/patch-docs_man_man1_ansible.1
	ansible/patches/patch-docs_man_man1_ansible.1.asciidoc.in
	ansible/patches/patch-examples_ansible.cfg
	ansible/patches/patch-lib_ansible_constants.py
	ansible/patches/patch-lib_ansible_modules_core_system_setup.py
Removed Files:
	ansible/patches/patch-lib_ansible_module__utils_junos.py
	ansible/patches/patch-lib_ansible_modules_core_network_junos_junos__template.py

Log Message:
Update ansible to version 2.2.0.0.

Pkgsrc changes:
 * Adapt patches and PLIST.

Upstream changes (partial, see CHANGELOG.md for the full list):

* 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.
* 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.n
* 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.

(Minor & other changes omitted here)

* Fixed a bug related to creation of retry files (#17456)
* Fixed a bug in the way include params are used when an include task
  is dynamic (#17064)
* Fixed a bug related to including blocks in an include task (#15963)
* Fixed a bug related to the use of hostvars internally when creating
  the connection plugin. This prevents things like variables using
  lookups from being evaluated unnecessarily (#17024)
* Fixed a bug where using a variable containing a list for the `hosts`
  of a play resulted in an list of lists (#16583)
* Fixed a bug where integer values would cause an error if a module
  param was of type `float` (no issue)
* Fixed a bug with net_template failing if src was not specified (#17726)
* Fixed a bug in "ansible-galaxy import" (#17417)
* Fixed a bug in which INI files incorrectly treated a hosts range as
  a section header (#15331)
* Fixed a bug in which the max_fail_percentage calculation erroneously
  caused a series of plays to stop executing (#15954)
* Fixed a bug in which the task names were not properly templated (#16295)
* Fixed a bug causing "squashed" loops (ie. yum, apt) to incorrectly
  report results (ansible-modules-core#4214)
* Fixed several bugs related to includes:
  - when including statically, make sure that all parents were also
    included statically (issue #16990)
  - properly resolve nested static include paths
  - print a message when a file is statically included
* Fixed a bug in which module params expected to be float types were
  not converted from integers (only strings) (#17325)
* Fixed a bug introduced by static includes in 2.1, which prevented
  notifications from going to the "top level" handler name.
* Fixed a bug where a group_vars or host_vars directory in the current
  working directory would be used (and would take precedence) over
  those in the inventory and/or playbook directory.
* Fixed a bug which could occur when the result of an async task did
  not parse as valid JSON.
* (re)-allowed the use of ansible_python_interpreter lines with more
  than one argument.
* Fixed several bugs related to the creation of the implicit localhost
  in inventory.
* Fixed a bug related to an unspecified number of retries when using until.
* Fixed a race-condition bug when creating temp directories before the
  worker process is forked.
* Fix a bug with async's poll keyword not making use of
  ansible_python_interpreter to run (and thus breaking when
  /usr/bin/python is not present on the remote machine.)
* Fix a bug where hosts that started with a range in inventory were
  being treated as an invalid section header.

Module fixes:
* Fixed a bug where the temporary CA files created by the module
  helper code were not being deleted properly in some situations
  (#17073)
* Fixed many bugs in the unarchive module
* Fixes for module ec2:
  - Fixed a bug related to source_dest_check when used with non-vpc
    instances (core#3243)
  - Fixed a bug in ec2 where instances were not powering of when
    referenced via tags only (core#4765)
  - Fixed a bug where instances with multiple interfaces were not
    powering up/down correctly (core#3234)
* Fixes for module get_url:
  - Fixed a bug in get_url module to force a download if there is a
    checksum mismatch regardless of the last modified time (core#4262)
  - Fixed a bug in get_url module to properly process FTP results
    (core#3661 and core#4601)
* Fixed a bug in win_user related to users with disabled
  accounts/expired passwords (core#4369)
* ini_file:
  - Fixed a bug where option lines are now inserted before blank lines.
  - Fixed a bug where leading whitespace prevented matches on options.
* Fixed a bug in iam_cert when dup_ok is used as a string.
* Fixed a bug in postgresql_db related to the changed logic when state=absent.
* Fixed a bug where single_transaction and quick were not passed into
  db_dump for the mysql_db module.
* Fixed a bug where the fetch module was not idempotent when
  retrieving the target of a symlink.
* Many minor fixes for bugs in extras modules.

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=532156b520d22b85ac91096ab7ae76ddbab6b984

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 ansible/Makefile                                   |   2 +-
 ansible/PLIST                                      | 917 +++++++++++++++++++--
 ansible/distinfo                                   |  21 +-
 ansible/patches/patch-docs_man_man1_ansible.1      |  10 +-
 .../patch-docs_man_man1_ansible.1.asciidoc.in      |   8 +-
 ansible/patches/patch-examples_ansible.cfg         |  38 +-
 ansible/patches/patch-lib_ansible_constants.py     |  18 +-
 .../patch-lib_ansible_module__utils_junos.py       |  27 -
 ...e_modules_core_network_junos_junos__template.py |  15 -
 .../patch-lib_ansible_modules_core_system_setup.py |   6 +-
 10 files changed, 909 insertions(+), 153 deletions(-)

diffs:
diff --git a/ansible/Makefile b/ansible/Makefile
index 6e547ba..f5dbc25 100644
--- a/ansible/Makefile
+++ b/ansible/Makefile
@@ -1,6 +1,6 @@
 # $NetBSD: Makefile,v 1.9 2016/02/24 22:32:59 tty Exp $
 
-DISTNAME=	ansible-2.1.1.0
+DISTNAME=	ansible-2.2.0.0
 #PKGNAME=	${PYPKGPREFIX}-${DISTNAME} # XXX: for when package is py3x-ready
 CATEGORIES=	python sysutils
 MASTER_SITES=	http://releases.ansible.com/ansible/
diff --git a/ansible/PLIST b/ansible/PLIST
index 6160b6b..7b381ad 100644
--- a/ansible/PLIST
+++ b/ansible/PLIST
@@ -71,6 +71,9 @@ ${PYSITELIB}/ansible/errors/yaml_strings.pyo
 ${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 +86,6 @@ ${PYSITELIB}/ansible/executor/playbook_executor.pyo
 ${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
@@ -153,24 +153,42 @@ ${PYSITELIB}/ansible/inventory/yaml.pyo
 ${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/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/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/cloud.py
+${PYSITELIB}/ansible/module_utils/cloud.pyc
+${PYSITELIB}/ansible/module_utils/cloud.pyo
 ${PYSITELIB}/ansible/module_utils/cloudstack.py
 ${PYSITELIB}/ansible/module_utils/cloudstack.pyc
 ${PYSITELIB}/ansible/module_utils/cloudstack.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/docker_common.py
 ${PYSITELIB}/ansible/module_utils/docker_common.pyc
 ${PYSITELIB}/ansible/module_utils/docker_common.pyo
@@ -180,15 +198,24 @@ ${PYSITELIB}/ansible/module_utils/ec2.pyo
 ${PYSITELIB}/ansible/module_utils/eos.py
 ${PYSITELIB}/ansible/module_utils/eos.pyc
 ${PYSITELIB}/ansible/module_utils/eos.pyo
+${PYSITELIB}/ansible/module_utils/exoscale.py
+${PYSITELIB}/ansible/module_utils/exoscale.pyc
+${PYSITELIB}/ansible/module_utils/exoscale.pyo
 ${PYSITELIB}/ansible/module_utils/f5.py
 ${PYSITELIB}/ansible/module_utils/f5.pyc
 ${PYSITELIB}/ansible/module_utils/f5.pyo
 ${PYSITELIB}/ansible/module_utils/facts.py
 ${PYSITELIB}/ansible/module_utils/facts.pyc
 ${PYSITELIB}/ansible/module_utils/facts.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/ios.py
 ${PYSITELIB}/ansible/module_utils/ios.pyc
 ${PYSITELIB}/ansible/module_utils/ios.pyo
@@ -198,18 +225,30 @@ ${PYSITELIB}/ansible/module_utils/iosxr.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/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/network.py
+${PYSITELIB}/ansible/module_utils/network.pyc
+${PYSITELIB}/ansible/module_utils/network.pyo
 ${PYSITELIB}/ansible/module_utils/nxos.py
 ${PYSITELIB}/ansible/module_utils/nxos.pyc
 ${PYSITELIB}/ansible/module_utils/nxos.pyo
@@ -219,7 +258,13 @@ ${PYSITELIB}/ansible/module_utils/openstack.pyo
 ${PYSITELIB}/ansible/module_utils/openswitch.py
 ${PYSITELIB}/ansible/module_utils/openswitch.pyc
 ${PYSITELIB}/ansible/module_utils/openswitch.pyo
+${PYSITELIB}/ansible/module_utils/ovirt.py
+${PYSITELIB}/ansible/module_utils/ovirt.pyc
+${PYSITELIB}/ansible/module_utils/ovirt.pyo
 ${PYSITELIB}/ansible/module_utils/powershell.ps1
+${PYSITELIB}/ansible/module_utils/pycompat24.py
+${PYSITELIB}/ansible/module_utils/pycompat24.pyc
+${PYSITELIB}/ansible/module_utils/pycompat24.pyo
 ${PYSITELIB}/ansible/module_utils/rax.py
 ${PYSITELIB}/ansible/module_utils/rax.pyc
 ${PYSITELIB}/ansible/module_utils/rax.pyo
@@ -232,9 +277,18 @@ ${PYSITELIB}/ansible/module_utils/service.pyo
 ${PYSITELIB}/ansible/module_utils/shell.py
 ${PYSITELIB}/ansible/module_utils/shell.pyc
 ${PYSITELIB}/ansible/module_utils/shell.pyo
+${PYSITELIB}/ansible/module_utils/six.py
+${PYSITELIB}/ansible/module_utils/six.pyc
+${PYSITELIB}/ansible/module_utils/six.pyo
 ${PYSITELIB}/ansible/module_utils/splitter.py
 ${PYSITELIB}/ansible/module_utils/splitter.pyc
 ${PYSITELIB}/ansible/module_utils/splitter.pyo
+${PYSITELIB}/ansible/module_utils/sros.py
+${PYSITELIB}/ansible/module_utils/sros.pyc
+${PYSITELIB}/ansible/module_utils/sros.pyo
+${PYSITELIB}/ansible/module_utils/univention_umc.py
+${PYSITELIB}/ansible/module_utils/univention_umc.pyc
+${PYSITELIB}/ansible/module_utils/univention_umc.pyo
 ${PYSITELIB}/ansible/module_utils/urls.py
 ${PYSITELIB}/ansible/module_utils/urls.pyc
 ${PYSITELIB}/ansible/module_utils/urls.pyo
@@ -244,6 +298,9 @@ ${PYSITELIB}/ansible/module_utils/vca.pyo
 ${PYSITELIB}/ansible/module_utils/vmware.py
 ${PYSITELIB}/ansible/module_utils/vmware.pyc
 ${PYSITELIB}/ansible/module_utils/vmware.pyo
+${PYSITELIB}/ansible/module_utils/vyos.py
+${PYSITELIB}/ansible/module_utils/vyos.pyc
+${PYSITELIB}/ansible/module_utils/vyos.pyo
 ${PYSITELIB}/ansible/modules/__init__.py
 ${PYSITELIB}/ansible/modules/__init__.pyc
 ${PYSITELIB}/ansible/modules/__init__.pyo
@@ -406,18 +463,24 @@ ${PYSITELIB}/ansible/modules/core/cloud/digital_ocean/__init__.pyo
 ${PYSITELIB}/ansible/modules/core/cloud/digital_ocean/digital_ocean.py
 ${PYSITELIB}/ansible/modules/core/cloud/digital_ocean/digital_ocean.pyc
 ${PYSITELIB}/ansible/modules/core/cloud/digital_ocean/digital_ocean.pyo
+${PYSITELIB}/ansible/modules/core/cloud/digital_ocean/digital_ocean_block_storage.py
+${PYSITELIB}/ansible/modules/core/cloud/digital_ocean/digital_ocean_block_storage.pyc
+${PYSITELIB}/ansible/modules/core/cloud/digital_ocean/digital_ocean_block_storage.pyo
 ${PYSITELIB}/ansible/modules/core/cloud/digital_ocean/digital_ocean_domain.py
 ${PYSITELIB}/ansible/modules/core/cloud/digital_ocean/digital_ocean_domain.pyc
 ${PYSITELIB}/ansible/modules/core/cloud/digital_ocean/digital_ocean_domain.pyo
 ${PYSITELIB}/ansible/modules/core/cloud/digital_ocean/digital_ocean_sshkey.py
 ${PYSITELIB}/ansible/modules/core/cloud/digital_ocean/digital_ocean_sshkey.pyc
 ${PYSITELIB}/ansible/modules/core/cloud/digital_ocean/digital_ocean_sshkey.pyo
+${PYSITELIB}/ansible/modules/core/cloud/digital_ocean/digital_ocean_tag.py
+${PYSITELIB}/ansible/modules/core/cloud/digital_ocean/digital_ocean_tag.pyc
+${PYSITELIB}/ansible/modules/core/cloud/digital_ocean/digital_ocean_tag.pyo
 ${PYSITELIB}/ansible/modules/core/cloud/docker/__init__.py
 ${PYSITELIB}/ansible/modules/core/cloud/docker/__init__.pyc
 ${PYSITELIB}/ansible/modules/core/cloud/docker/__init__.pyo
-${PYSITELIB}/ansible/modules/core/cloud/docker/docker.py
-${PYSITELIB}/ansible/modules/core/cloud/docker/docker.pyc
-${PYSITELIB}/ansible/modules/core/cloud/docker/docker.pyo
+${PYSITELIB}/ansible/modules/core/cloud/docker/_docker.py
+${PYSITELIB}/ansible/modules/core/cloud/docker/_docker.pyc
+${PYSITELIB}/ansible/modules/core/cloud/docker/_docker.pyo
 ${PYSITELIB}/ansible/modules/core/cloud/docker/docker_container.py
 ${PYSITELIB}/ansible/modules/core/cloud/docker/docker_container.pyc
 ${PYSITELIB}/ansible/modules/core/cloud/docker/docker_container.pyo
@@ -430,6 +493,9 @@ ${PYSITELIB}/ansible/modules/core/cloud/docker/docker_image_facts.pyo
 ${PYSITELIB}/ansible/modules/core/cloud/docker/docker_login.py
 ${PYSITELIB}/ansible/modules/core/cloud/docker/docker_login.pyc
 ${PYSITELIB}/ansible/modules/core/cloud/docker/docker_login.pyo
+${PYSITELIB}/ansible/modules/core/cloud/docker/docker_network.py
+${PYSITELIB}/ansible/modules/core/cloud/docker/docker_network.pyc
+${PYSITELIB}/ansible/modules/core/cloud/docker/docker_network.pyo
 ${PYSITELIB}/ansible/modules/core/cloud/docker/docker_service.py
 ${PYSITELIB}/ansible/modules/core/cloud/docker/docker_service.pyc
 ${PYSITELIB}/ansible/modules/core/cloud/docker/docker_service.pyo
@@ -445,6 +511,9 @@ ${PYSITELIB}/ansible/modules/core/cloud/google/gce.pyo
 ${PYSITELIB}/ansible/modules/core/cloud/google/gce_lb.py
 ${PYSITELIB}/ansible/modules/core/cloud/google/gce_lb.pyc
 ${PYSITELIB}/ansible/modules/core/cloud/google/gce_lb.pyo
+${PYSITELIB}/ansible/modules/core/cloud/google/gce_mig.py
+${PYSITELIB}/ansible/modules/core/cloud/google/gce_mig.pyc
+${PYSITELIB}/ansible/modules/core/cloud/google/gce_mig.pyo
 ${PYSITELIB}/ansible/modules/core/cloud/google/gce_net.py
 ${PYSITELIB}/ansible/modules/core/cloud/google/gce_net.pyc
 ${PYSITELIB}/ansible/modules/core/cloud/google/gce_net.pyo
@@ -772,9 +841,48 @@ ${PYSITELIB}/ansible/modules/core/network/cumulus/cl_license.pyo
 ${PYSITELIB}/ansible/modules/core/network/cumulus/cl_ports.py
 ${PYSITELIB}/ansible/modules/core/network/cumulus/cl_ports.pyc
 ${PYSITELIB}/ansible/modules/core/network/cumulus/cl_ports.pyo
+${PYSITELIB}/ansible/modules/core/network/dellos10/__init__.py
+${PYSITELIB}/ansible/modules/core/network/dellos10/__init__.pyc
+${PYSITELIB}/ansible/modules/core/network/dellos10/__init__.pyo
+${PYSITELIB}/ansible/modules/core/network/dellos10/dellos10_command.py
+${PYSITELIB}/ansible/modules/core/network/dellos10/dellos10_command.pyc
+${PYSITELIB}/ansible/modules/core/network/dellos10/dellos10_command.pyo
+${PYSITELIB}/ansible/modules/core/network/dellos10/dellos10_config.py
+${PYSITELIB}/ansible/modules/core/network/dellos10/dellos10_config.pyc
+${PYSITELIB}/ansible/modules/core/network/dellos10/dellos10_config.pyo
+${PYSITELIB}/ansible/modules/core/network/dellos10/dellos10_facts.py
+${PYSITELIB}/ansible/modules/core/network/dellos10/dellos10_facts.pyc
+${PYSITELIB}/ansible/modules/core/network/dellos10/dellos10_facts.pyo
+${PYSITELIB}/ansible/modules/core/network/dellos6/__init__.py
+${PYSITELIB}/ansible/modules/core/network/dellos6/__init__.pyc
+${PYSITELIB}/ansible/modules/core/network/dellos6/__init__.pyo
+${PYSITELIB}/ansible/modules/core/network/dellos6/dellos6_command.py
+${PYSITELIB}/ansible/modules/core/network/dellos6/dellos6_command.pyc
+${PYSITELIB}/ansible/modules/core/network/dellos6/dellos6_command.pyo
+${PYSITELIB}/ansible/modules/core/network/dellos6/dellos6_config.py
+${PYSITELIB}/ansible/modules/core/network/dellos6/dellos6_config.pyc
+${PYSITELIB}/ansible/modules/core/network/dellos6/dellos6_config.pyo
+${PYSITELIB}/ansible/modules/core/network/dellos6/dellos6_facts.py
+${PYSITELIB}/ansible/modules/core/network/dellos6/dellos6_facts.pyc
+${PYSITELIB}/ansible/modules/core/network/dellos6/dellos6_facts.pyo
+${PYSITELIB}/ansible/modules/core/network/dellos9/__init__.py
+${PYSITELIB}/ansible/modules/core/network/dellos9/__init__.pyc
+${PYSITELIB}/ansible/modules/core/network/dellos9/__init__.pyo
+${PYSITELIB}/ansible/modules/core/network/dellos9/dellos9_command.py
+${PYSITELIB}/ansible/modules/core/network/dellos9/dellos9_command.pyc
+${PYSITELIB}/ansible/modules/core/network/dellos9/dellos9_command.pyo
+${PYSITELIB}/ansible/modules/core/network/dellos9/dellos9_config.py
+${PYSITELIB}/ansible/modules/core/network/dellos9/dellos9_config.pyc
+${PYSITELIB}/ansible/modules/core/network/dellos9/dellos9_config.pyo
+${PYSITELIB}/ansible/modules/core/network/dellos9/dellos9_facts.py
+${PYSITELIB}/ansible/modules/core/network/dellos9/dellos9_facts.pyc
+${PYSITELIB}/ansible/modules/core/network/dellos9/dellos9_facts.pyo
 ${PYSITELIB}/ansible/modules/core/network/eos/__init__.py
 ${PYSITELIB}/ansible/modules/core/network/eos/__init__.pyc
 ${PYSITELIB}/ansible/modules/core/network/eos/__init__.pyo
+${PYSITELIB}/ansible/modules/core/network/eos/_eos_template.py
+${PYSITELIB}/ansible/modules/core/network/eos/_eos_template.pyc
+${PYSITELIB}/ansible/modules/core/network/eos/_eos_template.pyo
 ${PYSITELIB}/ansible/modules/core/network/eos/eos_command.py
 ${PYSITELIB}/ansible/modules/core/network/eos/eos_command.pyc
 ${PYSITELIB}/ansible/modules/core/network/eos/eos_command.pyo
@@ -784,36 +892,45 @@ ${PYSITELIB}/ansible/modules/core/network/eos/eos_config.pyo
 ${PYSITELIB}/ansible/modules/core/network/eos/eos_eapi.py
 ${PYSITELIB}/ansible/modules/core/network/eos/eos_eapi.pyc
 ${PYSITELIB}/ansible/modules/core/network/eos/eos_eapi.pyo
-${PYSITELIB}/ansible/modules/core/network/eos/eos_template.py
-${PYSITELIB}/ansible/modules/core/network/eos/eos_template.pyc
-${PYSITELIB}/ansible/modules/core/network/eos/eos_template.pyo
+${PYSITELIB}/ansible/modules/core/network/eos/eos_facts.py
+${PYSITELIB}/ansible/modules/core/network/eos/eos_facts.pyc
+${PYSITELIB}/ansible/modules/core/network/eos/eos_facts.pyo
 ${PYSITELIB}/ansible/modules/core/network/ios/__init__.py
 ${PYSITELIB}/ansible/modules/core/network/ios/__init__.pyc
 ${PYSITELIB}/ansible/modules/core/network/ios/__init__.pyo
+${PYSITELIB}/ansible/modules/core/network/ios/_ios_template.py
+${PYSITELIB}/ansible/modules/core/network/ios/_ios_template.pyc
+${PYSITELIB}/ansible/modules/core/network/ios/_ios_template.pyo
 ${PYSITELIB}/ansible/modules/core/network/ios/ios_command.py
 ${PYSITELIB}/ansible/modules/core/network/ios/ios_command.pyc
 ${PYSITELIB}/ansible/modules/core/network/ios/ios_command.pyo
 ${PYSITELIB}/ansible/modules/core/network/ios/ios_config.py
 ${PYSITELIB}/ansible/modules/core/network/ios/ios_config.pyc
 ${PYSITELIB}/ansible/modules/core/network/ios/ios_config.pyo
-${PYSITELIB}/ansible/modules/core/network/ios/ios_template.py
-${PYSITELIB}/ansible/modules/core/network/ios/ios_template.pyc
-${PYSITELIB}/ansible/modules/core/network/ios/ios_template.pyo
+${PYSITELIB}/ansible/modules/core/network/ios/ios_facts.py
+${PYSITELIB}/ansible/modules/core/network/ios/ios_facts.pyc
+${PYSITELIB}/ansible/modules/core/network/ios/ios_facts.pyo
 ${PYSITELIB}/ansible/modules/core/network/iosxr/__init__.py
 ${PYSITELIB}/ansible/modules/core/network/iosxr/__init__.pyc
 ${PYSITELIB}/ansible/modules/core/network/iosxr/__init__.pyo
+${PYSITELIB}/ansible/modules/core/network/iosxr/_iosxr_template.py
+${PYSITELIB}/ansible/modules/core/network/iosxr/_iosxr_template.pyc
+${PYSITELIB}/ansible/modules/core/network/iosxr/_iosxr_template.pyo
 ${PYSITELIB}/ansible/modules/core/network/iosxr/iosxr_command.py
 ${PYSITELIB}/ansible/modules/core/network/iosxr/iosxr_command.pyc
 ${PYSITELIB}/ansible/modules/core/network/iosxr/iosxr_command.pyo
 ${PYSITELIB}/ansible/modules/core/network/iosxr/iosxr_config.py
 ${PYSITELIB}/ansible/modules/core/network/iosxr/iosxr_config.pyc
 ${PYSITELIB}/ansible/modules/core/network/iosxr/iosxr_config.pyo
-${PYSITELIB}/ansible/modules/core/network/iosxr/iosxr_template.py
-${PYSITELIB}/ansible/modules/core/network/iosxr/iosxr_template.pyc
-${PYSITELIB}/ansible/modules/core/network/iosxr/iosxr_template.pyo
+${PYSITELIB}/ansible/modules/core/network/iosxr/iosxr_facts.py
+${PYSITELIB}/ansible/modules/core/network/iosxr/iosxr_facts.pyc
+${PYSITELIB}/ansible/modules/core/network/iosxr/iosxr_facts.pyo
 ${PYSITELIB}/ansible/modules/core/network/junos/__init__.py
 ${PYSITELIB}/ansible/modules/core/network/junos/__init__.pyc
 ${PYSITELIB}/ansible/modules/core/network/junos/__init__.pyo
+${PYSITELIB}/ansible/modules/core/network/junos/_junos_template.py
+${PYSITELIB}/ansible/modules/core/network/junos/_junos_template.pyc
+${PYSITELIB}/ansible/modules/core/network/junos/_junos_template.pyo
 ${PYSITELIB}/ansible/modules/core/network/junos/junos_command.py
 ${PYSITELIB}/ansible/modules/core/network/junos/junos_command.pyc
 ${PYSITELIB}/ansible/modules/core/network/junos/junos_command.pyo
@@ -829,57 +946,246 @@ ${PYSITELIB}/ansible/modules/core/network/junos/junos_netconf.pyo
 ${PYSITELIB}/ansible/modules/core/network/junos/junos_package.py
 ${PYSITELIB}/ansible/modules/core/network/junos/junos_package.pyc
 ${PYSITELIB}/ansible/modules/core/network/junos/junos_package.pyo
-${PYSITELIB}/ansible/modules/core/network/junos/junos_template.py
-${PYSITELIB}/ansible/modules/core/network/junos/junos_template.pyc
-${PYSITELIB}/ansible/modules/core/network/junos/junos_template.pyo
+${PYSITELIB}/ansible/modules/core/network/netvisor/__init__.py
+${PYSITELIB}/ansible/modules/core/network/netvisor/__init__.pyc
+${PYSITELIB}/ansible/modules/core/network/netvisor/__init__.pyo
+${PYSITELIB}/ansible/modules/core/network/netvisor/pn_cluster.py
+${PYSITELIB}/ansible/modules/core/network/netvisor/pn_cluster.pyc
+${PYSITELIB}/ansible/modules/core/network/netvisor/pn_cluster.pyo
+${PYSITELIB}/ansible/modules/core/network/netvisor/pn_ospf.py
+${PYSITELIB}/ansible/modules/core/network/netvisor/pn_ospf.pyc
+${PYSITELIB}/ansible/modules/core/network/netvisor/pn_ospf.pyo
+${PYSITELIB}/ansible/modules/core/network/netvisor/pn_ospfarea.py
+${PYSITELIB}/ansible/modules/core/network/netvisor/pn_ospfarea.pyc
+${PYSITELIB}/ansible/modules/core/network/netvisor/pn_ospfarea.pyo
+${PYSITELIB}/ansible/modules/core/network/netvisor/pn_show.py
+${PYSITELIB}/ansible/modules/core/network/netvisor/pn_show.pyc
+${PYSITELIB}/ansible/modules/core/network/netvisor/pn_show.pyo
+${PYSITELIB}/ansible/modules/core/network/netvisor/pn_trunk.py
+${PYSITELIB}/ansible/modules/core/network/netvisor/pn_trunk.pyc
+${PYSITELIB}/ansible/modules/core/network/netvisor/pn_trunk.pyo
+${PYSITELIB}/ansible/modules/core/network/netvisor/pn_vlag.py
+${PYSITELIB}/ansible/modules/core/network/netvisor/pn_vlag.pyc
+${PYSITELIB}/ansible/modules/core/network/netvisor/pn_vlag.pyo
+${PYSITELIB}/ansible/modules/core/network/netvisor/pn_vlan.py
+${PYSITELIB}/ansible/modules/core/network/netvisor/pn_vlan.pyc
+${PYSITELIB}/ansible/modules/core/network/netvisor/pn_vlan.pyo
+${PYSITELIB}/ansible/modules/core/network/netvisor/pn_vrouter.py
+${PYSITELIB}/ansible/modules/core/network/netvisor/pn_vrouter.pyc
+${PYSITELIB}/ansible/modules/core/network/netvisor/pn_vrouter.pyo
+${PYSITELIB}/ansible/modules/core/network/netvisor/pn_vrouterbgp.py
+${PYSITELIB}/ansible/modules/core/network/netvisor/pn_vrouterbgp.pyc
+${PYSITELIB}/ansible/modules/core/network/netvisor/pn_vrouterbgp.pyo
+${PYSITELIB}/ansible/modules/core/network/netvisor/pn_vrouterif.py
+${PYSITELIB}/ansible/modules/core/network/netvisor/pn_vrouterif.pyc
+${PYSITELIB}/ansible/modules/core/network/netvisor/pn_vrouterif.pyo
+${PYSITELIB}/ansible/modules/core/network/netvisor/pn_vrouterlbif.py
+${PYSITELIB}/ansible/modules/core/network/netvisor/pn_vrouterlbif.pyc
+${PYSITELIB}/ansible/modules/core/network/netvisor/pn_vrouterlbif.pyo
 ${PYSITELIB}/ansible/modules/core/network/nxos/__init__.py
 ${PYSITELIB}/ansible/modules/core/network/nxos/__init__.pyc
 ${PYSITELIB}/ansible/modules/core/network/nxos/__init__.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/_nxos_template.py
+${PYSITELIB}/ansible/modules/core/network/nxos/_nxos_template.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/_nxos_template.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_aaa_server.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_aaa_server.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_aaa_server.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_aaa_server_host.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_aaa_server_host.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_aaa_server_host.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_acl.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_acl.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_acl.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_acl_interface.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_acl_interface.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_acl_interface.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_bgp.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_bgp.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_bgp.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_bgp_af.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_bgp_af.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_bgp_af.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_bgp_neighbor.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_bgp_neighbor.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_bgp_neighbor.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_bgp_neighbor_af.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_bgp_neighbor_af.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_bgp_neighbor_af.pyo
 ${PYSITELIB}/ansible/modules/core/network/nxos/nxos_command.py
 ${PYSITELIB}/ansible/modules/core/network/nxos/nxos_command.pyc
 ${PYSITELIB}/ansible/modules/core/network/nxos/nxos_command.pyo
 ${PYSITELIB}/ansible/modules/core/network/nxos/nxos_config.py
 ${PYSITELIB}/ansible/modules/core/network/nxos/nxos_config.pyc
 ${PYSITELIB}/ansible/modules/core/network/nxos/nxos_config.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_evpn_global.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_evpn_global.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_evpn_global.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_evpn_vni.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_evpn_vni.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_evpn_vni.pyo
 ${PYSITELIB}/ansible/modules/core/network/nxos/nxos_facts.py
 ${PYSITELIB}/ansible/modules/core/network/nxos/nxos_facts.pyc
 ${PYSITELIB}/ansible/modules/core/network/nxos/nxos_facts.pyo
 ${PYSITELIB}/ansible/modules/core/network/nxos/nxos_feature.py
 ${PYSITELIB}/ansible/modules/core/network/nxos/nxos_feature.pyc
 ${PYSITELIB}/ansible/modules/core/network/nxos/nxos_feature.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_file_copy.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_file_copy.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_file_copy.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_gir.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_gir.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_gir.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_gir_profile_management.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_gir_profile_management.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_gir_profile_management.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_hsrp.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_hsrp.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_hsrp.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_igmp.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_igmp.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_igmp.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_igmp_interface.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_igmp_interface.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_igmp_interface.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_igmp_snooping.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_igmp_snooping.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_igmp_snooping.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_install_os.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_install_os.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_install_os.pyo
 ${PYSITELIB}/ansible/modules/core/network/nxos/nxos_interface.py
 ${PYSITELIB}/ansible/modules/core/network/nxos/nxos_interface.pyc
 ${PYSITELIB}/ansible/modules/core/network/nxos/nxos_interface.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_interface_ospf.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_interface_ospf.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_interface_ospf.pyo
 ${PYSITELIB}/ansible/modules/core/network/nxos/nxos_ip_interface.py
 ${PYSITELIB}/ansible/modules/core/network/nxos/nxos_ip_interface.pyc
 ${PYSITELIB}/ansible/modules/core/network/nxos/nxos_ip_interface.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_mtu.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_mtu.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_mtu.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_ntp.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_ntp.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_ntp.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_ntp_auth.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_ntp_auth.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_ntp_auth.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_ntp_options.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_ntp_options.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_ntp_options.pyo
 ${PYSITELIB}/ansible/modules/core/network/nxos/nxos_nxapi.py
 ${PYSITELIB}/ansible/modules/core/network/nxos/nxos_nxapi.pyc
 ${PYSITELIB}/ansible/modules/core/network/nxos/nxos_nxapi.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_ospf.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_ospf.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_ospf.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_ospf_vrf.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_ospf_vrf.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_ospf_vrf.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_overlay_global.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_overlay_global.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_overlay_global.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_pim.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_pim.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_pim.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_pim_interface.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_pim_interface.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_pim_interface.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_pim_rp_address.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_pim_rp_address.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_pim_rp_address.pyo
 ${PYSITELIB}/ansible/modules/core/network/nxos/nxos_ping.py
 ${PYSITELIB}/ansible/modules/core/network/nxos/nxos_ping.pyc
 ${PYSITELIB}/ansible/modules/core/network/nxos/nxos_ping.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_portchannel.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_portchannel.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_portchannel.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_reboot.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_reboot.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_reboot.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_rollback.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_rollback.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_rollback.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_smu.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_smu.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_smu.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_snapshot.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_snapshot.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_snapshot.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_snmp_community.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_snmp_community.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_snmp_community.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_snmp_contact.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_snmp_contact.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_snmp_contact.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_snmp_host.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_snmp_host.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_snmp_host.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_snmp_location.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_snmp_location.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_snmp_location.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_snmp_traps.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_snmp_traps.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_snmp_traps.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_snmp_user.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_snmp_user.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_snmp_user.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_static_route.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_static_route.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_static_route.pyo
 ${PYSITELIB}/ansible/modules/core/network/nxos/nxos_switchport.py
 ${PYSITELIB}/ansible/modules/core/network/nxos/nxos_switchport.pyc
 ${PYSITELIB}/ansible/modules/core/network/nxos/nxos_switchport.pyo
-${PYSITELIB}/ansible/modules/core/network/nxos/nxos_template.py
-${PYSITELIB}/ansible/modules/core/network/nxos/nxos_template.pyc
-${PYSITELIB}/ansible/modules/core/network/nxos/nxos_template.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_udld.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_udld.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_udld.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_udld_interface.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_udld_interface.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_udld_interface.pyo
 ${PYSITELIB}/ansible/modules/core/network/nxos/nxos_vlan.py
 ${PYSITELIB}/ansible/modules/core/network/nxos/nxos_vlan.pyc
 ${PYSITELIB}/ansible/modules/core/network/nxos/nxos_vlan.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_vpc.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_vpc.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_vpc.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_vpc_interface.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_vpc_interface.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_vpc_interface.pyo
 ${PYSITELIB}/ansible/modules/core/network/nxos/nxos_vrf.py
 ${PYSITELIB}/ansible/modules/core/network/nxos/nxos_vrf.pyc
 ${PYSITELIB}/ansible/modules/core/network/nxos/nxos_vrf.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_vrf_af.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_vrf_af.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_vrf_af.pyo
 ${PYSITELIB}/ansible/modules/core/network/nxos/nxos_vrf_interface.py
 ${PYSITELIB}/ansible/modules/core/network/nxos/nxos_vrf_interface.pyc
 ${PYSITELIB}/ansible/modules/core/network/nxos/nxos_vrf_interface.pyo
 ${PYSITELIB}/ansible/modules/core/network/nxos/nxos_vrrp.py
 ${PYSITELIB}/ansible/modules/core/network/nxos/nxos_vrrp.pyc
 ${PYSITELIB}/ansible/modules/core/network/nxos/nxos_vrrp.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_vtp_domain.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_vtp_domain.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_vtp_domain.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_vtp_password.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_vtp_password.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_vtp_password.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_vtp_version.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_vtp_version.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_vtp_version.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_vxlan_vtep.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_vxlan_vtep.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_vxlan_vtep.pyo
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_vxlan_vtep_vni.py
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_vxlan_vtep_vni.pyc
+${PYSITELIB}/ansible/modules/core/network/nxos/nxos_vxlan_vtep_vni.pyo
 ${PYSITELIB}/ansible/modules/core/network/openswitch/__init__.py
 ${PYSITELIB}/ansible/modules/core/network/openswitch/__init__.pyc
 ${PYSITELIB}/ansible/modules/core/network/openswitch/__init__.pyo
+${PYSITELIB}/ansible/modules/core/network/openswitch/_ops_template.py
+${PYSITELIB}/ansible/modules/core/network/openswitch/_ops_template.pyc
+${PYSITELIB}/ansible/modules/core/network/openswitch/_ops_template.pyo
 ${PYSITELIB}/ansible/modules/core/network/openswitch/ops_command.py
 ${PYSITELIB}/ansible/modules/core/network/openswitch/ops_command.pyc
 ${PYSITELIB}/ansible/modules/core/network/openswitch/ops_command.pyo
@@ -889,9 +1195,30 @@ ${PYSITELIB}/ansible/modules/core/network/openswitch/ops_config.pyo
 ${PYSITELIB}/ansible/modules/core/network/openswitch/ops_facts.py
 ${PYSITELIB}/ansible/modules/core/network/openswitch/ops_facts.pyc
 ${PYSITELIB}/ansible/modules/core/network/openswitch/ops_facts.pyo
-${PYSITELIB}/ansible/modules/core/network/openswitch/ops_template.py
-${PYSITELIB}/ansible/modules/core/network/openswitch/ops_template.pyc
-${PYSITELIB}/ansible/modules/core/network/openswitch/ops_template.pyo
+${PYSITELIB}/ansible/modules/core/network/sros/__init__.py
+${PYSITELIB}/ansible/modules/core/network/sros/__init__.pyc
+${PYSITELIB}/ansible/modules/core/network/sros/__init__.pyo
+${PYSITELIB}/ansible/modules/core/network/sros/sros_command.py
+${PYSITELIB}/ansible/modules/core/network/sros/sros_command.pyc
+${PYSITELIB}/ansible/modules/core/network/sros/sros_command.pyo
+${PYSITELIB}/ansible/modules/core/network/sros/sros_config.py
+${PYSITELIB}/ansible/modules/core/network/sros/sros_config.pyc
+${PYSITELIB}/ansible/modules/core/network/sros/sros_config.pyo
+${PYSITELIB}/ansible/modules/core/network/sros/sros_rollback.py
+${PYSITELIB}/ansible/modules/core/network/sros/sros_rollback.pyc
+${PYSITELIB}/ansible/modules/core/network/sros/sros_rollback.pyo
+${PYSITELIB}/ansible/modules/core/network/vyos/__init__.py
+${PYSITELIB}/ansible/modules/core/network/vyos/__init__.pyc
+${PYSITELIB}/ansible/modules/core/network/vyos/__init__.pyo
+${PYSITELIB}/ansible/modules/core/network/vyos/vyos_command.py
+${PYSITELIB}/ansible/modules/core/network/vyos/vyos_command.pyc
+${PYSITELIB}/ansible/modules/core/network/vyos/vyos_command.pyo
+${PYSITELIB}/ansible/modules/core/network/vyos/vyos_config.py
+${PYSITELIB}/ansible/modules/core/network/vyos/vyos_config.pyc
+${PYSITELIB}/ansible/modules/core/network/vyos/vyos_config.pyo
+${PYSITELIB}/ansible/modules/core/network/vyos/vyos_facts.py
+${PYSITELIB}/ansible/modules/core/network/vyos/vyos_facts.pyc
+${PYSITELIB}/ansible/modules/core/network/vyos/vyos_facts.pyo
 ${PYSITELIB}/ansible/modules/core/packaging/__init__.py
 ${PYSITELIB}/ansible/modules/core/packaging/__init__.pyc
 ${PYSITELIB}/ansible/modules/core/packaging/__init__.pyo
@@ -988,6 +1315,9 @@ ${PYSITELIB}/ansible/modules/core/system/setup.pyo
 ${PYSITELIB}/ansible/modules/core/system/sysctl.py
 ${PYSITELIB}/ansible/modules/core/system/sysctl.pyc
 ${PYSITELIB}/ansible/modules/core/system/sysctl.pyo
+${PYSITELIB}/ansible/modules/core/system/systemd.py
+${PYSITELIB}/ansible/modules/core/system/systemd.pyc
+${PYSITELIB}/ansible/modules/core/system/systemd.pyo
 ${PYSITELIB}/ansible/modules/core/system/user.py
 ${PYSITELIB}/ansible/modules/core/system/user.pyc
 ${PYSITELIB}/ansible/modules/core/system/user.pyo
@@ -997,12 +1327,15 @@ ${PYSITELIB}/ansible/modules/core/utilities/__init__.pyo
 ${PYSITELIB}/ansible/modules/core/utilities/helper/__init__.py
 ${PYSITELIB}/ansible/modules/core/utilities/helper/__init__.pyc
 ${PYSITELIB}/ansible/modules/core/utilities/helper/__init__.pyo
+${PYSITELIB}/ansible/modules/core/utilities/helper/_accelerate.py
+${PYSITELIB}/ansible/modules/core/utilities/helper/_accelerate.pyc
+${PYSITELIB}/ansible/modules/core/utilities/helper/_accelerate.pyo
 ${PYSITELIB}/ansible/modules/core/utilities/helper/_fireball.py
 ${PYSITELIB}/ansible/modules/core/utilities/helper/_fireball.pyc
 ${PYSITELIB}/ansible/modules/core/utilities/helper/_fireball.pyo
-${PYSITELIB}/ansible/modules/core/utilities/helper/accelerate.py
-${PYSITELIB}/ansible/modules/core/utilities/helper/accelerate.pyc
-${PYSITELIB}/ansible/modules/core/utilities/helper/accelerate.pyo
+${PYSITELIB}/ansible/modules/core/utilities/helper/meta.py
+${PYSITELIB}/ansible/modules/core/utilities/helper/meta.pyc
+${PYSITELIB}/ansible/modules/core/utilities/helper/meta.pyo
 ${PYSITELIB}/ansible/modules/core/utilities/logic/__init__.py
 ${PYSITELIB}/ansible/modules/core/utilities/logic/__init__.pyc
 ${PYSITELIB}/ansible/modules/core/utilities/logic/__init__.pyo
@@ -1021,6 +1354,12 @@ ${PYSITELIB}/ansible/modules/core/utilities/logic/debug.pyo
 ${PYSITELIB}/ansible/modules/core/utilities/logic/fail.py
 ${PYSITELIB}/ansible/modules/core/utilities/logic/fail.pyc
 ${PYSITELIB}/ansible/modules/core/utilities/logic/fail.pyo
+${PYSITELIB}/ansible/modules/core/utilities/logic/include.py
+${PYSITELIB}/ansible/modules/core/utilities/logic/include.pyc
+${PYSITELIB}/ansible/modules/core/utilities/logic/include.pyo
+${PYSITELIB}/ansible/modules/core/utilities/logic/include_role.py
+${PYSITELIB}/ansible/modules/core/utilities/logic/include_role.pyc
+${PYSITELIB}/ansible/modules/core/utilities/logic/include_role.pyo
 ${PYSITELIB}/ansible/modules/core/utilities/logic/include_vars.py
 ${PYSITELIB}/ansible/modules/core/utilities/logic/include_vars.pyc
 ${PYSITELIB}/ansible/modules/core/utilities/logic/include_vars.pyo
@@ -1051,8 +1390,14 @@ ${PYSITELIB}/ansible/modules/core/web_infrastructure/supervisorctl.pyo
 ${PYSITELIB}/ansible/modules/core/windows/__init__.py
 ${PYSITELIB}/ansible/modules/core/windows/__init__.pyc
 ${PYSITELIB}/ansible/modules/core/windows/__init__.pyo
+${PYSITELIB}/ansible/modules/core/windows/async_status.ps1
+${PYSITELIB}/ansible/modules/core/windows/async_wrapper.ps1
 ${PYSITELIB}/ansible/modules/core/windows/setup.ps1
 ${PYSITELIB}/ansible/modules/core/windows/slurp.ps1
+${PYSITELIB}/ansible/modules/core/windows/win_command.ps1
+${PYSITELIB}/ansible/modules/core/windows/win_command.py
+${PYSITELIB}/ansible/modules/core/windows/win_command.pyc
+${PYSITELIB}/ansible/modules/core/windows/win_command.pyo
 ${PYSITELIB}/ansible/modules/core/windows/win_copy.ps1
 ${PYSITELIB}/ansible/modules/core/windows/win_copy.py
 ${PYSITELIB}/ansible/modules/core/windows/win_copy.pyc
@@ -1092,6 +1437,10 @@ ${PYSITELIB}/ansible/modules/core/windows/win_service.ps1
 ${PYSITELIB}/ansible/modules/core/windows/win_service.py
 ${PYSITELIB}/ansible/modules/core/windows/win_service.pyc
 ${PYSITELIB}/ansible/modules/core/windows/win_service.pyo
+${PYSITELIB}/ansible/modules/core/windows/win_shell.ps1
+${PYSITELIB}/ansible/modules/core/windows/win_shell.py
+${PYSITELIB}/ansible/modules/core/windows/win_shell.pyc
+${PYSITELIB}/ansible/modules/core/windows/win_shell.pyo
 ${PYSITELIB}/ansible/modules/core/windows/win_stat.ps1
 ${PYSITELIB}/ansible/modules/core/windows/win_stat.py
 ${PYSITELIB}/ansible/modules/core/windows/win_stat.pyc
@@ -1112,15 +1461,27 @@ ${PYSITELIB}/ansible/modules/extras/cloud/__init__.pyo
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/__init__.py
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/__init__.pyc
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/__init__.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/cloudformation_facts.py
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/cloudformation_facts.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/cloudformation_facts.pyo
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/cloudtrail.py
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/cloudtrail.pyc
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/cloudtrail.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/cloudwatchevent_rule.py
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/cloudwatchevent_rule.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/cloudwatchevent_rule.pyo
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/dynamodb_table.py
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/dynamodb_table.pyc
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/dynamodb_table.pyo
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_ami_copy.py
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_ami_copy.pyc
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_ami_copy.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_asg_facts.py
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_asg_facts.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_asg_facts.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_customer_gateway.py
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_customer_gateway.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_customer_gateway.pyo
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_elb_facts.py
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_elb_facts.pyc
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_elb_facts.pyo
@@ -1130,6 +1491,9 @@ ${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_eni.pyo
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_eni_facts.py
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_eni_facts.pyc
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_eni_facts.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_lc_find.py
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_lc_find.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_lc_find.pyo
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_remote_facts.py
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_remote_facts.pyc
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_remote_facts.pyo
@@ -1142,12 +1506,27 @@ ${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_vol_facts.pyo
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_vpc_dhcp_options.py
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_vpc_dhcp_options.pyc
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_vpc_dhcp_options.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_vpc_dhcp_options_facts.py
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_vpc_dhcp_options_facts.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_vpc_dhcp_options_facts.pyo
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_vpc_igw.py
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_vpc_igw.pyc
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_vpc_igw.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_vpc_nacl.py
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_vpc_nacl.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_vpc_nacl.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_vpc_nacl_facts.py
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_vpc_nacl_facts.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_vpc_nacl_facts.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_vpc_nat_gateway.py
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_vpc_nat_gateway.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_vpc_nat_gateway.pyo
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_vpc_net_facts.py
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_vpc_net_facts.pyc
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_vpc_net_facts.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_vpc_peer.py
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_vpc_peer.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_vpc_peer.pyo
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_vpc_route_table.py
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_vpc_route_table.pyc
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_vpc_route_table.pyo
@@ -1160,6 +1539,9 @@ ${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_vpc_subnet.pyo
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_vpc_subnet_facts.py
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_vpc_subnet_facts.pyc
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_vpc_subnet_facts.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_vpc_vgw.py
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_vpc_vgw.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_vpc_vgw.pyo
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_win_password.py
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_win_password.pyc
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/ec2_win_password.pyo
@@ -1178,6 +1560,42 @@ ${PYSITELIB}/ansible/modules/extras/cloud/amazon/ecs_task.pyo
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/ecs_taskdefinition.py
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/ecs_taskdefinition.pyc
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/ecs_taskdefinition.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/efs.py
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/efs.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/efs.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/efs_facts.py
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/efs_facts.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/efs_facts.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/execute_lambda.py
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/execute_lambda.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/execute_lambda.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/iam_mfa_device_facts.py
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/iam_mfa_device_facts.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/iam_mfa_device_facts.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/iam_server_certificate_facts.py
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/iam_server_certificate_facts.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/iam_server_certificate_facts.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/kinesis_stream.py
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/kinesis_stream.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/kinesis_stream.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/lambda.py
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/lambda.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/lambda.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/lambda_alias.py
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/lambda_alias.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/lambda_alias.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/lambda_event.py
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/lambda_event.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/lambda_event.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/lambda_facts.py
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/lambda_facts.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/lambda_facts.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/redshift.py
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/redshift.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/redshift.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/redshift_subnet_group.py
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/redshift_subnet_group.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/redshift_subnet_group.pyo
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/route53_facts.py
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/route53_facts.pyc
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/route53_facts.pyo
@@ -1196,6 +1614,9 @@ ${PYSITELIB}/ansible/modules/extras/cloud/amazon/s3_lifecycle.pyo
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/s3_logging.py
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/s3_logging.pyc
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/s3_logging.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/s3_website.py
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/s3_website.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/s3_website.pyo
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/sns_topic.py
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/sns_topic.pyc
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/sns_topic.pyo
@@ -1205,6 +1626,18 @@ ${PYSITELIB}/ansible/modules/extras/cloud/amazon/sqs_queue.pyo
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/sts_assume_role.py
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/sts_assume_role.pyc
 ${PYSITELIB}/ansible/modules/extras/cloud/amazon/sts_assume_role.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/sts_session_token.py
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/sts_session_token.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/amazon/sts_session_token.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/atomic/__init__.py
+${PYSITELIB}/ansible/modules/extras/cloud/atomic/__init__.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/atomic/__init__.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/atomic/atomic_host.py
+${PYSITELIB}/ansible/modules/extras/cloud/atomic/atomic_host.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/atomic/atomic_host.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/atomic/atomic_image.py
+${PYSITELIB}/ansible/modules/extras/cloud/atomic/atomic_image.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/atomic/atomic_image.pyo
 ${PYSITELIB}/ansible/modules/extras/cloud/azure/__init__.py
 ${PYSITELIB}/ansible/modules/extras/cloud/azure/__init__.pyc
 ${PYSITELIB}/ansible/modules/extras/cloud/azure/__init__.pyo
@@ -1304,12 +1737,18 @@ ${PYSITELIB}/ansible/modules/extras/cloud/cloudstack/cs_project.pyo
 ${PYSITELIB}/ansible/modules/extras/cloud/cloudstack/cs_resourcelimit.py
 ${PYSITELIB}/ansible/modules/extras/cloud/cloudstack/cs_resourcelimit.pyc
 ${PYSITELIB}/ansible/modules/extras/cloud/cloudstack/cs_resourcelimit.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/cloudstack/cs_router.py
+${PYSITELIB}/ansible/modules/extras/cloud/cloudstack/cs_router.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/cloudstack/cs_router.pyo
 ${PYSITELIB}/ansible/modules/extras/cloud/cloudstack/cs_securitygroup.py
 ${PYSITELIB}/ansible/modules/extras/cloud/cloudstack/cs_securitygroup.pyc
 ${PYSITELIB}/ansible/modules/extras/cloud/cloudstack/cs_securitygroup.pyo
 ${PYSITELIB}/ansible/modules/extras/cloud/cloudstack/cs_securitygroup_rule.py
 ${PYSITELIB}/ansible/modules/extras/cloud/cloudstack/cs_securitygroup_rule.pyc
 ${PYSITELIB}/ansible/modules/extras/cloud/cloudstack/cs_securitygroup_rule.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/cloudstack/cs_snapshot_policy.py
+${PYSITELIB}/ansible/modules/extras/cloud/cloudstack/cs_snapshot_policy.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/cloudstack/cs_snapshot_policy.pyo
 ${PYSITELIB}/ansible/modules/extras/cloud/cloudstack/cs_sshkeypair.py
 ${PYSITELIB}/ansible/modules/extras/cloud/cloudstack/cs_sshkeypair.pyc
 ${PYSITELIB}/ansible/modules/extras/cloud/cloudstack/cs_sshkeypair.pyo
@@ -1337,6 +1776,12 @@ ${PYSITELIB}/ansible/modules/extras/cloud/cloudstack/cs_zone_facts.pyo
 ${PYSITELIB}/ansible/modules/extras/cloud/google/__init__.py
 ${PYSITELIB}/ansible/modules/extras/cloud/google/__init__.pyc
 ${PYSITELIB}/ansible/modules/extras/cloud/google/__init__.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/google/gcdns_record.py
+${PYSITELIB}/ansible/modules/extras/cloud/google/gcdns_record.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/google/gcdns_record.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/google/gcdns_zone.py
+${PYSITELIB}/ansible/modules/extras/cloud/google/gcdns_zone.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/google/gcdns_zone.pyo
 ${PYSITELIB}/ansible/modules/extras/cloud/google/gce_img.py
 ${PYSITELIB}/ansible/modules/extras/cloud/google/gce_img.pyc
 ${PYSITELIB}/ansible/modules/extras/cloud/google/gce_img.pyo
@@ -1349,6 +1794,15 @@ ${PYSITELIB}/ansible/modules/extras/cloud/lxc/__init__.pyo
 ${PYSITELIB}/ansible/modules/extras/cloud/lxc/lxc_container.py
 ${PYSITELIB}/ansible/modules/extras/cloud/lxc/lxc_container.pyc
 ${PYSITELIB}/ansible/modules/extras/cloud/lxc/lxc_container.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/lxd/__init__.py
+${PYSITELIB}/ansible/modules/extras/cloud/lxd/__init__.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/lxd/__init__.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/lxd/lxd_container.py
+${PYSITELIB}/ansible/modules/extras/cloud/lxd/lxd_container.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/lxd/lxd_container.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/lxd/lxd_profile.py
+${PYSITELIB}/ansible/modules/extras/cloud/lxd/lxd_profile.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/lxd/lxd_profile.pyo
 ${PYSITELIB}/ansible/modules/extras/cloud/misc/__init__.py
 ${PYSITELIB}/ansible/modules/extras/cloud/misc/__init__.pyc
 ${PYSITELIB}/ansible/modules/extras/cloud/misc/__init__.pyo
@@ -1361,6 +1815,9 @@ ${PYSITELIB}/ansible/modules/extras/cloud/misc/proxmox.pyo
 ${PYSITELIB}/ansible/modules/extras/cloud/misc/proxmox_template.py
 ${PYSITELIB}/ansible/modules/extras/cloud/misc/proxmox_template.pyc
 ${PYSITELIB}/ansible/modules/extras/cloud/misc/proxmox_template.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/misc/rhevm.py
+${PYSITELIB}/ansible/modules/extras/cloud/misc/rhevm.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/misc/rhevm.pyo
 ${PYSITELIB}/ansible/modules/extras/cloud/misc/virt.py
 ${PYSITELIB}/ansible/modules/extras/cloud/misc/virt.pyc
 ${PYSITELIB}/ansible/modules/extras/cloud/misc/virt.pyo
@@ -1391,6 +1848,9 @@ ${PYSITELIB}/ansible/modules/extras/cloud/openstack/os_keystone_domain_facts.pyo
 ${PYSITELIB}/ansible/modules/extras/cloud/openstack/os_keystone_role.py
 ${PYSITELIB}/ansible/modules/extras/cloud/openstack/os_keystone_role.pyc
 ${PYSITELIB}/ansible/modules/extras/cloud/openstack/os_keystone_role.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/openstack/os_keystone_service.py
+${PYSITELIB}/ansible/modules/extras/cloud/openstack/os_keystone_service.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/openstack/os_keystone_service.pyo
 ${PYSITELIB}/ansible/modules/extras/cloud/openstack/os_port_facts.py
 ${PYSITELIB}/ansible/modules/extras/cloud/openstack/os_port_facts.pyc
 ${PYSITELIB}/ansible/modules/extras/cloud/openstack/os_port_facts.pyo
@@ -1400,12 +1860,42 @@ ${PYSITELIB}/ansible/modules/extras/cloud/openstack/os_project.pyo
 ${PYSITELIB}/ansible/modules/extras/cloud/openstack/os_project_facts.py
 ${PYSITELIB}/ansible/modules/extras/cloud/openstack/os_project_facts.pyc
 ${PYSITELIB}/ansible/modules/extras/cloud/openstack/os_project_facts.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/openstack/os_recordset.py
+${PYSITELIB}/ansible/modules/extras/cloud/openstack/os_recordset.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/openstack/os_recordset.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/openstack/os_server_group.py
+${PYSITELIB}/ansible/modules/extras/cloud/openstack/os_server_group.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/openstack/os_server_group.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/openstack/os_stack.py
+${PYSITELIB}/ansible/modules/extras/cloud/openstack/os_stack.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/openstack/os_stack.pyo
 ${PYSITELIB}/ansible/modules/extras/cloud/openstack/os_user_facts.py
 ${PYSITELIB}/ansible/modules/extras/cloud/openstack/os_user_facts.pyc
 ${PYSITELIB}/ansible/modules/extras/cloud/openstack/os_user_facts.pyo
 ${PYSITELIB}/ansible/modules/extras/cloud/openstack/os_user_role.py
 ${PYSITELIB}/ansible/modules/extras/cloud/openstack/os_user_role.pyc
 ${PYSITELIB}/ansible/modules/extras/cloud/openstack/os_user_role.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/openstack/os_zone.py
+${PYSITELIB}/ansible/modules/extras/cloud/openstack/os_zone.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/openstack/os_zone.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/ovh/__init__.py
+${PYSITELIB}/ansible/modules/extras/cloud/ovh/__init__.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/ovh/__init__.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/ovh/ovh_ip_loadbalancing_backend.py
+${PYSITELIB}/ansible/modules/extras/cloud/ovh/ovh_ip_loadbalancing_backend.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/ovh/ovh_ip_loadbalancing_backend.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/ovirt/__init__.py
+${PYSITELIB}/ansible/modules/extras/cloud/ovirt/__init__.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/ovirt/__init__.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/ovirt/ovirt_auth.py
+${PYSITELIB}/ansible/modules/extras/cloud/ovirt/ovirt_auth.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/ovirt/ovirt_auth.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/ovirt/ovirt_disks.py
+${PYSITELIB}/ansible/modules/extras/cloud/ovirt/ovirt_disks.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/ovirt/ovirt_disks.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/ovirt/ovirt_vms.py
+${PYSITELIB}/ansible/modules/extras/cloud/ovirt/ovirt_vms.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/ovirt/ovirt_vms.pyo
 ${PYSITELIB}/ansible/modules/extras/cloud/profitbricks/__init__.py
 ${PYSITELIB}/ansible/modules/extras/cloud/profitbricks/__init__.pyc
 ${PYSITELIB}/ansible/modules/extras/cloud/profitbricks/__init__.pyo
@@ -1445,6 +1935,12 @@ ${PYSITELIB}/ansible/modules/extras/cloud/rackspace/rax_mon_notification.pyo
 ${PYSITELIB}/ansible/modules/extras/cloud/rackspace/rax_mon_notification_plan.py
 ${PYSITELIB}/ansible/modules/extras/cloud/rackspace/rax_mon_notification_plan.pyc
 ${PYSITELIB}/ansible/modules/extras/cloud/rackspace/rax_mon_notification_plan.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/smartos/__init__.py
+${PYSITELIB}/ansible/modules/extras/cloud/smartos/__init__.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/smartos/__init__.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/smartos/smartos_image_facts.py
+${PYSITELIB}/ansible/modules/extras/cloud/smartos/smartos_image_facts.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/smartos/smartos_image_facts.pyo
 ${PYSITELIB}/ansible/modules/extras/cloud/softlayer/__init__.py
 ${PYSITELIB}/ansible/modules/extras/cloud/softlayer/__init__.pyc
 ${PYSITELIB}/ansible/modules/extras/cloud/softlayer/__init__.pyo
@@ -1481,9 +1977,15 @@ ${PYSITELIB}/ansible/modules/extras/cloud/vmware/vmware_dvs_portgroup.pyo
 ${PYSITELIB}/ansible/modules/extras/cloud/vmware/vmware_dvswitch.py
 ${PYSITELIB}/ansible/modules/extras/cloud/vmware/vmware_dvswitch.pyc
 ${PYSITELIB}/ansible/modules/extras/cloud/vmware/vmware_dvswitch.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/vmware/vmware_guest.py
+${PYSITELIB}/ansible/modules/extras/cloud/vmware/vmware_guest.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/vmware/vmware_guest.pyo
 ${PYSITELIB}/ansible/modules/extras/cloud/vmware/vmware_host.py
 ${PYSITELIB}/ansible/modules/extras/cloud/vmware/vmware_host.pyc
 ${PYSITELIB}/ansible/modules/extras/cloud/vmware/vmware_host.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/vmware/vmware_local_user_manager.py
+${PYSITELIB}/ansible/modules/extras/cloud/vmware/vmware_local_user_manager.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/vmware/vmware_local_user_manager.pyo
 ${PYSITELIB}/ansible/modules/extras/cloud/vmware/vmware_maintenancemode.py
 ${PYSITELIB}/ansible/modules/extras/cloud/vmware/vmware_maintenancemode.pyc
 ${PYSITELIB}/ansible/modules/extras/cloud/vmware/vmware_maintenancemode.pyo
@@ -1511,6 +2013,9 @@ ${PYSITELIB}/ansible/modules/extras/cloud/vmware/vmware_vmkernel.pyo
 ${PYSITELIB}/ansible/modules/extras/cloud/vmware/vmware_vmkernel_ip_config.py
 ${PYSITELIB}/ansible/modules/extras/cloud/vmware/vmware_vmkernel_ip_config.pyc
 ${PYSITELIB}/ansible/modules/extras/cloud/vmware/vmware_vmkernel_ip_config.pyo
+${PYSITELIB}/ansible/modules/extras/cloud/vmware/vmware_vmotion.py
+${PYSITELIB}/ansible/modules/extras/cloud/vmware/vmware_vmotion.pyc
+${PYSITELIB}/ansible/modules/extras/cloud/vmware/vmware_vmotion.pyo
 ${PYSITELIB}/ansible/modules/extras/cloud/vmware/vmware_vsan_cluster.py
 ${PYSITELIB}/ansible/modules/extras/cloud/vmware/vmware_vsan_cluster.pyc
 ${PYSITELIB}/ansible/modules/extras/cloud/vmware/vmware_vsan_cluster.pyo
@@ -1595,6 +2100,12 @@ ${PYSITELIB}/ansible/modules/extras/database/misc/redis.pyo
 ${PYSITELIB}/ansible/modules/extras/database/misc/riak.py
 ${PYSITELIB}/ansible/modules/extras/database/misc/riak.pyc
 ${PYSITELIB}/ansible/modules/extras/database/misc/riak.pyo
+${PYSITELIB}/ansible/modules/extras/database/mssql/__init__.py
+${PYSITELIB}/ansible/modules/extras/database/mssql/__init__.pyc
+${PYSITELIB}/ansible/modules/extras/database/mssql/__init__.pyo
+${PYSITELIB}/ansible/modules/extras/database/mssql/mssql_db.py
+${PYSITELIB}/ansible/modules/extras/database/mssql/mssql_db.pyc
+${PYSITELIB}/ansible/modules/extras/database/mssql/mssql_db.pyo
 ${PYSITELIB}/ansible/modules/extras/database/mysql/__init__.py
 ${PYSITELIB}/ansible/modules/extras/database/mysql/__init__.pyc
 ${PYSITELIB}/ansible/modules/extras/database/mysql/__init__.pyo
@@ -1637,6 +2148,15 @@ ${PYSITELIB}/ansible/modules/extras/files/blockinfile.pyo
 ${PYSITELIB}/ansible/modules/extras/files/patch.py
 ${PYSITELIB}/ansible/modules/extras/files/patch.pyc
 ${PYSITELIB}/ansible/modules/extras/files/patch.pyo
+${PYSITELIB}/ansible/modules/extras/identity/__init__.py
+${PYSITELIB}/ansible/modules/extras/identity/__init__.pyc
+${PYSITELIB}/ansible/modules/extras/identity/__init__.pyo
+${PYSITELIB}/ansible/modules/extras/identity/opendj/__init__.py
+${PYSITELIB}/ansible/modules/extras/identity/opendj/__init__.pyc
+${PYSITELIB}/ansible/modules/extras/identity/opendj/__init__.pyo
+${PYSITELIB}/ansible/modules/extras/identity/opendj/opendj_backendprop.py
+${PYSITELIB}/ansible/modules/extras/identity/opendj/opendj_backendprop.pyc
+${PYSITELIB}/ansible/modules/extras/identity/opendj/opendj_backendprop.pyo
 ${PYSITELIB}/ansible/modules/extras/messaging/__init__.py
 ${PYSITELIB}/ansible/modules/extras/messaging/__init__.pyc
 ${PYSITELIB}/ansible/modules/extras/messaging/__init__.pyo
@@ -1685,12 +2205,21 @@ ${PYSITELIB}/ansible/modules/extras/monitoring/datadog_event.pyo
 ${PYSITELIB}/ansible/modules/extras/monitoring/datadog_monitor.py
 ${PYSITELIB}/ansible/modules/extras/monitoring/datadog_monitor.pyc
 ${PYSITELIB}/ansible/modules/extras/monitoring/datadog_monitor.pyo
+${PYSITELIB}/ansible/modules/extras/monitoring/honeybadger_deployment.py
+${PYSITELIB}/ansible/modules/extras/monitoring/honeybadger_deployment.pyc
+${PYSITELIB}/ansible/modules/extras/monitoring/honeybadger_deployment.pyo
 ${PYSITELIB}/ansible/modules/extras/monitoring/librato_annotation.py
 ${PYSITELIB}/ansible/modules/extras/monitoring/librato_annotation.pyc
 ${PYSITELIB}/ansible/modules/extras/monitoring/librato_annotation.pyo
 ${PYSITELIB}/ansible/modules/extras/monitoring/logentries.py
 ${PYSITELIB}/ansible/modules/extras/monitoring/logentries.pyc
 ${PYSITELIB}/ansible/modules/extras/monitoring/logentries.pyo
+${PYSITELIB}/ansible/modules/extras/monitoring/logicmonitor.py
+${PYSITELIB}/ansible/modules/extras/monitoring/logicmonitor.pyc
+${PYSITELIB}/ansible/modules/extras/monitoring/logicmonitor.pyo
+${PYSITELIB}/ansible/modules/extras/monitoring/logicmonitor_facts.py
+${PYSITELIB}/ansible/modules/extras/monitoring/logicmonitor_facts.pyc
+${PYSITELIB}/ansible/modules/extras/monitoring/logicmonitor_facts.pyo
 ${PYSITELIB}/ansible/modules/extras/monitoring/monit.py
 ${PYSITELIB}/ansible/modules/extras/monitoring/monit.pyc
 ${PYSITELIB}/ansible/modules/extras/monitoring/monit.pyo
@@ -1715,9 +2244,15 @@ ${PYSITELIB}/ansible/modules/extras/monitoring/rollbar_deployment.pyo
 ${PYSITELIB}/ansible/modules/extras/monitoring/sensu_check.py
 ${PYSITELIB}/ansible/modules/extras/monitoring/sensu_check.pyc
 ${PYSITELIB}/ansible/modules/extras/monitoring/sensu_check.pyo
+${PYSITELIB}/ansible/modules/extras/monitoring/sensu_subscription.py
+${PYSITELIB}/ansible/modules/extras/monitoring/sensu_subscription.pyc
+${PYSITELIB}/ansible/modules/extras/monitoring/sensu_subscription.pyo
 ${PYSITELIB}/ansible/modules/extras/monitoring/stackdriver.py
 ${PYSITELIB}/ansible/modules/extras/monitoring/stackdriver.pyc
 ${PYSITELIB}/ansible/modules/extras/monitoring/stackdriver.pyo
+${PYSITELIB}/ansible/modules/extras/monitoring/statusio_maintenance.py
+${PYSITELIB}/ansible/modules/extras/monitoring/statusio_maintenance.pyc
+${PYSITELIB}/ansible/modules/extras/monitoring/statusio_maintenance.pyo
 ${PYSITELIB}/ansible/modules/extras/monitoring/uptimerobot.py
 ${PYSITELIB}/ansible/modules/extras/monitoring/uptimerobot.pyc
 ${PYSITELIB}/ansible/modules/extras/monitoring/uptimerobot.pyo
@@ -1751,6 +2286,18 @@ ${PYSITELIB}/ansible/modules/extras/network/a10/a10_service_group.pyo
 ${PYSITELIB}/ansible/modules/extras/network/a10/a10_virtual_server.py
 ${PYSITELIB}/ansible/modules/extras/network/a10/a10_virtual_server.pyc
 ${PYSITELIB}/ansible/modules/extras/network/a10/a10_virtual_server.pyo
+${PYSITELIB}/ansible/modules/extras/network/asa/__init__.py
+${PYSITELIB}/ansible/modules/extras/network/asa/__init__.pyc
+${PYSITELIB}/ansible/modules/extras/network/asa/__init__.pyo
+${PYSITELIB}/ansible/modules/extras/network/asa/asa_acl.py
+${PYSITELIB}/ansible/modules/extras/network/asa/asa_acl.pyc
+${PYSITELIB}/ansible/modules/extras/network/asa/asa_acl.pyo
+${PYSITELIB}/ansible/modules/extras/network/asa/asa_command.py
+${PYSITELIB}/ansible/modules/extras/network/asa/asa_command.pyc
+${PYSITELIB}/ansible/modules/extras/network/asa/asa_command.pyo
+${PYSITELIB}/ansible/modules/extras/network/asa/asa_config.py
+${PYSITELIB}/ansible/modules/extras/network/asa/asa_config.pyc
+${PYSITELIB}/ansible/modules/extras/network/asa/asa_config.pyo
 ${PYSITELIB}/ansible/modules/extras/network/citrix/__init__.py
 ${PYSITELIB}/ansible/modules/extras/network/citrix/__init__.pyc
 ${PYSITELIB}/ansible/modules/extras/network/citrix/__init__.pyo
@@ -1766,15 +2313,42 @@ ${PYSITELIB}/ansible/modules/extras/network/dnsimple.pyo
 ${PYSITELIB}/ansible/modules/extras/network/dnsmadeeasy.py
 ${PYSITELIB}/ansible/modules/extras/network/dnsmadeeasy.pyc
 ${PYSITELIB}/ansible/modules/extras/network/dnsmadeeasy.pyo
+${PYSITELIB}/ansible/modules/extras/network/exoscale/__init__.py
+${PYSITELIB}/ansible/modules/extras/network/exoscale/__init__.pyc
+${PYSITELIB}/ansible/modules/extras/network/exoscale/__init__.pyo
+${PYSITELIB}/ansible/modules/extras/network/exoscale/exo_dns_domain.py
+${PYSITELIB}/ansible/modules/extras/network/exoscale/exo_dns_domain.pyc
+${PYSITELIB}/ansible/modules/extras/network/exoscale/exo_dns_domain.pyo
+${PYSITELIB}/ansible/modules/extras/network/exoscale/exo_dns_record.py
+${PYSITELIB}/ansible/modules/extras/network/exoscale/exo_dns_record.pyc
+${PYSITELIB}/ansible/modules/extras/network/exoscale/exo_dns_record.pyo
 ${PYSITELIB}/ansible/modules/extras/network/f5/__init__.py
 ${PYSITELIB}/ansible/modules/extras/network/f5/__init__.pyc
 ${PYSITELIB}/ansible/modules/extras/network/f5/__init__.pyo
+${PYSITELIB}/ansible/modules/extras/network/f5/bigip_device_dns.py
+${PYSITELIB}/ansible/modules/extras/network/f5/bigip_device_dns.pyc
+${PYSITELIB}/ansible/modules/extras/network/f5/bigip_device_dns.pyo
+${PYSITELIB}/ansible/modules/extras/network/f5/bigip_device_ntp.py
+${PYSITELIB}/ansible/modules/extras/network/f5/bigip_device_ntp.pyc
+${PYSITELIB}/ansible/modules/extras/network/f5/bigip_device_ntp.pyo
+${PYSITELIB}/ansible/modules/extras/network/f5/bigip_device_sshd.py
+${PYSITELIB}/ansible/modules/extras/network/f5/bigip_device_sshd.pyc
+${PYSITELIB}/ansible/modules/extras/network/f5/bigip_device_sshd.pyo
 ${PYSITELIB}/ansible/modules/extras/network/f5/bigip_facts.py
 ${PYSITELIB}/ansible/modules/extras/network/f5/bigip_facts.pyc
 ${PYSITELIB}/ansible/modules/extras/network/f5/bigip_facts.pyo
+${PYSITELIB}/ansible/modules/extras/network/f5/bigip_gtm_datacenter.py
+${PYSITELIB}/ansible/modules/extras/network/f5/bigip_gtm_datacenter.pyc
+${PYSITELIB}/ansible/modules/extras/network/f5/bigip_gtm_datacenter.pyo
+${PYSITELIB}/ansible/modules/extras/network/f5/bigip_gtm_virtual_server.py
+${PYSITELIB}/ansible/modules/extras/network/f5/bigip_gtm_virtual_server.pyc
+${PYSITELIB}/ansible/modules/extras/network/f5/bigip_gtm_virtual_server.pyo
 ${PYSITELIB}/ansible/modules/extras/network/f5/bigip_gtm_wide_ip.py
 ${PYSITELIB}/ansible/modules/extras/network/f5/bigip_gtm_wide_ip.pyc
 ${PYSITELIB}/ansible/modules/extras/network/f5/bigip_gtm_wide_ip.pyo
+${PYSITELIB}/ansible/modules/extras/network/f5/bigip_irule.py
+${PYSITELIB}/ansible/modules/extras/network/f5/bigip_irule.pyc
+${PYSITELIB}/ansible/modules/extras/network/f5/bigip_irule.pyo
 ${PYSITELIB}/ansible/modules/extras/network/f5/bigip_monitor_http.py
 ${PYSITELIB}/ansible/modules/extras/network/f5/bigip_monitor_http.pyc
 ${PYSITELIB}/ansible/modules/extras/network/f5/bigip_monitor_http.pyo
@@ -1790,18 +2364,57 @@ ${PYSITELIB}/ansible/modules/extras/network/f5/bigip_pool.pyo
 ${PYSITELIB}/ansible/modules/extras/network/f5/bigip_pool_member.py
 ${PYSITELIB}/ansible/modules/extras/network/f5/bigip_pool_member.pyc
 ${PYSITELIB}/ansible/modules/extras/network/f5/bigip_pool_member.pyo
+${PYSITELIB}/ansible/modules/extras/network/f5/bigip_routedomain.py
+${PYSITELIB}/ansible/modules/extras/network/f5/bigip_routedomain.pyc
+${PYSITELIB}/ansible/modules/extras/network/f5/bigip_routedomain.pyo
+${PYSITELIB}/ansible/modules/extras/network/f5/bigip_selfip.py
+${PYSITELIB}/ansible/modules/extras/network/f5/bigip_selfip.pyc
+${PYSITELIB}/ansible/modules/extras/network/f5/bigip_selfip.pyo
+${PYSITELIB}/ansible/modules/extras/network/f5/bigip_ssl_certificate.py
+${PYSITELIB}/ansible/modules/extras/network/f5/bigip_ssl_certificate.pyc
+${PYSITELIB}/ansible/modules/extras/network/f5/bigip_ssl_certificate.pyo
+${PYSITELIB}/ansible/modules/extras/network/f5/bigip_sys_db.py
+${PYSITELIB}/ansible/modules/extras/network/f5/bigip_sys_db.pyc
+${PYSITELIB}/ansible/modules/extras/network/f5/bigip_sys_db.pyo
 ${PYSITELIB}/ansible/modules/extras/network/f5/bigip_virtual_server.py
 ${PYSITELIB}/ansible/modules/extras/network/f5/bigip_virtual_server.pyc
 ${PYSITELIB}/ansible/modules/extras/network/f5/bigip_virtual_server.pyo
+${PYSITELIB}/ansible/modules/extras/network/f5/bigip_vlan.py
+${PYSITELIB}/ansible/modules/extras/network/f5/bigip_vlan.pyc
+${PYSITELIB}/ansible/modules/extras/network/f5/bigip_vlan.pyo
 ${PYSITELIB}/ansible/modules/extras/network/haproxy.py
 ${PYSITELIB}/ansible/modules/extras/network/haproxy.pyc
 ${PYSITELIB}/ansible/modules/extras/network/haproxy.pyo
+${PYSITELIB}/ansible/modules/extras/network/illumos/__init__.py
+${PYSITELIB}/ansible/modules/extras/network/illumos/__init__.pyc
+${PYSITELIB}/ansible/modules/extras/network/illumos/__init__.pyo
+${PYSITELIB}/ansible/modules/extras/network/illumos/dladm_etherstub.py
+${PYSITELIB}/ansible/modules/extras/network/illumos/dladm_etherstub.pyc
+${PYSITELIB}/ansible/modules/extras/network/illumos/dladm_etherstub.pyo
+${PYSITELIB}/ansible/modules/extras/network/illumos/dladm_vnic.py
+${PYSITELIB}/ansible/modules/extras/network/illumos/dladm_vnic.pyc
+${PYSITELIB}/ansible/modules/extras/network/illumos/dladm_vnic.pyo
+${PYSITELIB}/ansible/modules/extras/network/illumos/flowadm.py
+${PYSITELIB}/ansible/modules/extras/network/illumos/flowadm.pyc
+${PYSITELIB}/ansible/modules/extras/network/illumos/flowadm.pyo
+${PYSITELIB}/ansible/modules/extras/network/illumos/ipadm_if.py
+${PYSITELIB}/ansible/modules/extras/network/illumos/ipadm_if.pyc
+${PYSITELIB}/ansible/modules/extras/network/illumos/ipadm_if.pyo
+${PYSITELIB}/ansible/modules/extras/network/illumos/ipadm_prop.py
+${PYSITELIB}/ansible/modules/extras/network/illumos/ipadm_prop.pyc
+${PYSITELIB}/ansible/modules/extras/network/illumos/ipadm_prop.pyo
 ${PYSITELIB}/ansible/modules/extras/network/ipify_facts.py
 ${PYSITELIB}/ansible/modules/extras/network/ipify_facts.pyc
 ${PYSITELIB}/ansible/modules/extras/network/ipify_facts.pyo
 ${PYSITELIB}/ansible/modules/extras/network/lldp.py
 ${PYSITELIB}/ansible/modules/extras/network/lldp.pyc
 ${PYSITELIB}/ansible/modules/extras/network/lldp.pyo
+${PYSITELIB}/ansible/modules/extras/network/netconf/__init__.py
+${PYSITELIB}/ansible/modules/extras/network/netconf/__init__.pyc
+${PYSITELIB}/ansible/modules/extras/network/netconf/__init__.pyo
+${PYSITELIB}/ansible/modules/extras/network/netconf/netconf_config.py
+${PYSITELIB}/ansible/modules/extras/network/netconf/netconf_config.pyc
+${PYSITELIB}/ansible/modules/extras/network/netconf/netconf_config.pyo
 ${PYSITELIB}/ansible/modules/extras/network/nmcli.py
 ${PYSITELIB}/ansible/modules/extras/network/nmcli.pyc
 ${PYSITELIB}/ansible/modules/extras/network/nmcli.pyo
@@ -1817,6 +2430,9 @@ ${PYSITELIB}/ansible/modules/extras/network/openvswitch_port.pyo
 ${PYSITELIB}/ansible/modules/extras/network/snmp_facts.py
 ${PYSITELIB}/ansible/modules/extras/network/snmp_facts.pyc
 ${PYSITELIB}/ansible/modules/extras/network/snmp_facts.pyo
+${PYSITELIB}/ansible/modules/extras/network/wakeonlan.py
+${PYSITELIB}/ansible/modules/extras/network/wakeonlan.pyc
+${PYSITELIB}/ansible/modules/extras/network/wakeonlan.pyo
 ${PYSITELIB}/ansible/modules/extras/notification/__init__.py
 ${PYSITELIB}/ansible/modules/extras/notification/__init__.pyc
 ${PYSITELIB}/ansible/modules/extras/notification/__init__.pyo
@@ -1859,6 +2475,9 @@ ${PYSITELIB}/ansible/modules/extras/notification/pushbullet.pyo
 ${PYSITELIB}/ansible/modules/extras/notification/pushover.py
 ${PYSITELIB}/ansible/modules/extras/notification/pushover.pyc
 ${PYSITELIB}/ansible/modules/extras/notification/pushover.pyo
+${PYSITELIB}/ansible/modules/extras/notification/rocketchat.py
+${PYSITELIB}/ansible/modules/extras/notification/rocketchat.pyc
+${PYSITELIB}/ansible/modules/extras/notification/rocketchat.pyo
 ${PYSITELIB}/ansible/modules/extras/notification/sendgrid.py
 ${PYSITELIB}/ansible/modules/extras/notification/sendgrid.pyc
 ${PYSITELIB}/ansible/modules/extras/notification/sendgrid.pyo
@@ -1868,6 +2487,9 @@ ${PYSITELIB}/ansible/modules/extras/notification/slack.pyo
 ${PYSITELIB}/ansible/modules/extras/notification/sns.py
 ${PYSITELIB}/ansible/modules/extras/notification/sns.pyc
 ${PYSITELIB}/ansible/modules/extras/notification/sns.pyo
+${PYSITELIB}/ansible/modules/extras/notification/telegram.py
+${PYSITELIB}/ansible/modules/extras/notification/telegram.pyc
+${PYSITELIB}/ansible/modules/extras/notification/telegram.pyo
 ${PYSITELIB}/ansible/modules/extras/notification/twilio.py
 ${PYSITELIB}/ansible/modules/extras/notification/twilio.pyc
 ${PYSITELIB}/ansible/modules/extras/notification/twilio.pyo
@@ -1883,6 +2505,9 @@ ${PYSITELIB}/ansible/modules/extras/packaging/dpkg_selections.pyo
 ${PYSITELIB}/ansible/modules/extras/packaging/elasticsearch_plugin.py
 ${PYSITELIB}/ansible/modules/extras/packaging/elasticsearch_plugin.pyc
 ${PYSITELIB}/ansible/modules/extras/packaging/elasticsearch_plugin.pyo
+${PYSITELIB}/ansible/modules/extras/packaging/kibana_plugin.py
+${PYSITELIB}/ansible/modules/extras/packaging/kibana_plugin.pyc
+${PYSITELIB}/ansible/modules/extras/packaging/kibana_plugin.pyo
 ${PYSITELIB}/ansible/modules/extras/packaging/language/__init__.py
 ${PYSITELIB}/ansible/modules/extras/packaging/language/__init__.pyc
 ${PYSITELIB}/ansible/modules/extras/packaging/language/__init__.pyo
@@ -1982,6 +2607,18 @@ ${PYSITELIB}/ansible/modules/extras/packaging/os/zypper.pyo
 ${PYSITELIB}/ansible/modules/extras/packaging/os/zypper_repository.py
 ${PYSITELIB}/ansible/modules/extras/packaging/os/zypper_repository.pyc
 ${PYSITELIB}/ansible/modules/extras/packaging/os/zypper_repository.pyo
+${PYSITELIB}/ansible/modules/extras/remote_management/__init__.py
+${PYSITELIB}/ansible/modules/extras/remote_management/__init__.pyc
+${PYSITELIB}/ansible/modules/extras/remote_management/__init__.pyo
+${PYSITELIB}/ansible/modules/extras/remote_management/ipmi/__init__.py
+${PYSITELIB}/ansible/modules/extras/remote_management/ipmi/__init__.pyc
+${PYSITELIB}/ansible/modules/extras/remote_management/ipmi/__init__.pyo
+${PYSITELIB}/ansible/modules/extras/remote_management/ipmi/ipmi_boot.py
+${PYSITELIB}/ansible/modules/extras/remote_management/ipmi/ipmi_boot.pyc
+${PYSITELIB}/ansible/modules/extras/remote_management/ipmi/ipmi_boot.pyo
+${PYSITELIB}/ansible/modules/extras/remote_management/ipmi/ipmi_power.py
+${PYSITELIB}/ansible/modules/extras/remote_management/ipmi/ipmi_power.pyc
+${PYSITELIB}/ansible/modules/extras/remote_management/ipmi/ipmi_power.pyo
 ${PYSITELIB}/ansible/modules/extras/source_control/__init__.py
 ${PYSITELIB}/ansible/modules/extras/source_control/__init__.pyc
 ${PYSITELIB}/ansible/modules/extras/source_control/__init__.pyo
@@ -1994,6 +2631,12 @@ ${PYSITELIB}/ansible/modules/extras/source_control/git_config.pyo
 ${PYSITELIB}/ansible/modules/extras/source_control/github_hooks.py
 ${PYSITELIB}/ansible/modules/extras/source_control/github_hooks.pyc
 ${PYSITELIB}/ansible/modules/extras/source_control/github_hooks.pyo
+${PYSITELIB}/ansible/modules/extras/source_control/github_key.py
+${PYSITELIB}/ansible/modules/extras/source_control/github_key.pyc
+${PYSITELIB}/ansible/modules/extras/source_control/github_key.pyo
+${PYSITELIB}/ansible/modules/extras/source_control/github_release.py
+${PYSITELIB}/ansible/modules/extras/source_control/github_release.pyc
+${PYSITELIB}/ansible/modules/extras/source_control/github_release.pyo
 ${PYSITELIB}/ansible/modules/extras/source_control/gitlab_group.py
 ${PYSITELIB}/ansible/modules/extras/source_control/gitlab_group.pyc
 ${PYSITELIB}/ansible/modules/extras/source_control/gitlab_group.pyo
@@ -2003,6 +2646,60 @@ ${PYSITELIB}/ansible/modules/extras/source_control/gitlab_project.pyo
 ${PYSITELIB}/ansible/modules/extras/source_control/gitlab_user.py
 ${PYSITELIB}/ansible/modules/extras/source_control/gitlab_user.pyc
 ${PYSITELIB}/ansible/modules/extras/source_control/gitlab_user.pyo
+${PYSITELIB}/ansible/modules/extras/storage/__init__.py
+${PYSITELIB}/ansible/modules/extras/storage/__init__.pyc
+${PYSITELIB}/ansible/modules/extras/storage/__init__.pyo
+${PYSITELIB}/ansible/modules/extras/storage/netapp/__init__.py
+${PYSITELIB}/ansible/modules/extras/storage/netapp/__init__.pyc
+${PYSITELIB}/ansible/modules/extras/storage/netapp/__init__.pyo
+${PYSITELIB}/ansible/modules/extras/storage/netapp/netapp_e_amg.py
+${PYSITELIB}/ansible/modules/extras/storage/netapp/netapp_e_amg.pyc
+${PYSITELIB}/ansible/modules/extras/storage/netapp/netapp_e_amg.pyo
+${PYSITELIB}/ansible/modules/extras/storage/netapp/netapp_e_amg_role.py
+${PYSITELIB}/ansible/modules/extras/storage/netapp/netapp_e_amg_role.pyc
+${PYSITELIB}/ansible/modules/extras/storage/netapp/netapp_e_amg_role.pyo
+${PYSITELIB}/ansible/modules/extras/storage/netapp/netapp_e_amg_sync.py
+${PYSITELIB}/ansible/modules/extras/storage/netapp/netapp_e_amg_sync.pyc
+${PYSITELIB}/ansible/modules/extras/storage/netapp/netapp_e_amg_sync.pyo
+${PYSITELIB}/ansible/modules/extras/storage/netapp/netapp_e_auth.py
+${PYSITELIB}/ansible/modules/extras/storage/netapp/netapp_e_auth.pyc
+${PYSITELIB}/ansible/modules/extras/storage/netapp/netapp_e_auth.pyo
+${PYSITELIB}/ansible/modules/extras/storage/netapp/netapp_e_facts.py
+${PYSITELIB}/ansible/modules/extras/storage/netapp/netapp_e_facts.pyc
+${PYSITELIB}/ansible/modules/extras/storage/netapp/netapp_e_facts.pyo
+${PYSITELIB}/ansible/modules/extras/storage/netapp/netapp_e_flashcache.py
+${PYSITELIB}/ansible/modules/extras/storage/netapp/netapp_e_flashcache.pyc
+${PYSITELIB}/ansible/modules/extras/storage/netapp/netapp_e_flashcache.pyo
+${PYSITELIB}/ansible/modules/extras/storage/netapp/netapp_e_host.py
+${PYSITELIB}/ansible/modules/extras/storage/netapp/netapp_e_host.pyc
+${PYSITELIB}/ansible/modules/extras/storage/netapp/netapp_e_host.pyo
+${PYSITELIB}/ansible/modules/extras/storage/netapp/netapp_e_hostgroup.py
+${PYSITELIB}/ansible/modules/extras/storage/netapp/netapp_e_hostgroup.pyc
+${PYSITELIB}/ansible/modules/extras/storage/netapp/netapp_e_hostgroup.pyo
+${PYSITELIB}/ansible/modules/extras/storage/netapp/netapp_e_lun_mapping.py
+${PYSITELIB}/ansible/modules/extras/storage/netapp/netapp_e_lun_mapping.pyc
+${PYSITELIB}/ansible/modules/extras/storage/netapp/netapp_e_lun_mapping.pyo
+${PYSITELIB}/ansible/modules/extras/storage/netapp/netapp_e_snapshot_group.py
+${PYSITELIB}/ansible/modules/extras/storage/netapp/netapp_e_snapshot_group.pyc
+${PYSITELIB}/ansible/modules/extras/storage/netapp/netapp_e_snapshot_group.pyo
+${PYSITELIB}/ansible/modules/extras/storage/netapp/netapp_e_snapshot_images.py
+${PYSITELIB}/ansible/modules/extras/storage/netapp/netapp_e_snapshot_images.pyc
+${PYSITELIB}/ansible/modules/extras/storage/netapp/netapp_e_snapshot_images.pyo
+${PYSITELIB}/ansible/modules/extras/storage/netapp/netapp_e_snapshot_volume.py
+${PYSITELIB}/ansible/modules/extras/storage/netapp/netapp_e_snapshot_volume.pyc
+${PYSITELIB}/ansible/modules/extras/storage/netapp/netapp_e_snapshot_volume.pyo
+${PYSITELIB}/ansible/modules/extras/storage/netapp/netapp_e_storage_system.py
+${PYSITELIB}/ansible/modules/extras/storage/netapp/netapp_e_storage_system.pyc
+${PYSITELIB}/ansible/modules/extras/storage/netapp/netapp_e_storage_system.pyo
+${PYSITELIB}/ansible/modules/extras/storage/netapp/netapp_e_storagepool.py
+${PYSITELIB}/ansible/modules/extras/storage/netapp/netapp_e_storagepool.pyc
+${PYSITELIB}/ansible/modules/extras/storage/netapp/netapp_e_storagepool.pyo
+${PYSITELIB}/ansible/modules/extras/storage/netapp/netapp_e_volume.py
+${PYSITELIB}/ansible/modules/extras/storage/netapp/netapp_e_volume.pyc
+${PYSITELIB}/ansible/modules/extras/storage/netapp/netapp_e_volume.pyo
+${PYSITELIB}/ansible/modules/extras/storage/netapp/netapp_e_volume_copy.py
+${PYSITELIB}/ansible/modules/extras/storage/netapp/netapp_e_volume_copy.pyc
+${PYSITELIB}/ansible/modules/extras/storage/netapp/netapp_e_volume_copy.pyo
 ${PYSITELIB}/ansible/modules/extras/system/__init__.py
 ${PYSITELIB}/ansible/modules/extras/system/__init__.pyc
 ${PYSITELIB}/ansible/modules/extras/system/__init__.pyo
@@ -2078,6 +2775,9 @@ ${PYSITELIB}/ansible/modules/extras/system/pam_limits.pyo
 ${PYSITELIB}/ansible/modules/extras/system/puppet.py
 ${PYSITELIB}/ansible/modules/extras/system/puppet.pyc
 ${PYSITELIB}/ansible/modules/extras/system/puppet.pyo
+${PYSITELIB}/ansible/modules/extras/system/sefcontext.py
+${PYSITELIB}/ansible/modules/extras/system/sefcontext.pyc
+${PYSITELIB}/ansible/modules/extras/system/sefcontext.pyo
 ${PYSITELIB}/ansible/modules/extras/system/selinux_permissive.py
 ${PYSITELIB}/ansible/modules/extras/system/selinux_permissive.pyc
 ${PYSITELIB}/ansible/modules/extras/system/selinux_permissive.pyo
@@ -2090,15 +2790,39 @@ ${PYSITELIB}/ansible/modules/extras/system/solaris_zone.pyo
 ${PYSITELIB}/ansible/modules/extras/system/svc.py
 ${PYSITELIB}/ansible/modules/extras/system/svc.pyc
 ${PYSITELIB}/ansible/modules/extras/system/svc.pyo
+${PYSITELIB}/ansible/modules/extras/system/timezone.py
+${PYSITELIB}/ansible/modules/extras/system/timezone.pyc
+${PYSITELIB}/ansible/modules/extras/system/timezone.pyo
 ${PYSITELIB}/ansible/modules/extras/system/ufw.py
 ${PYSITELIB}/ansible/modules/extras/system/ufw.pyc
 ${PYSITELIB}/ansible/modules/extras/system/ufw.pyo
 ${PYSITELIB}/ansible/modules/extras/system/zfs.py
 ${PYSITELIB}/ansible/modules/extras/system/zfs.pyc
 ${PYSITELIB}/ansible/modules/extras/system/zfs.pyo
+${PYSITELIB}/ansible/modules/extras/univention/__init__.py
+${PYSITELIB}/ansible/modules/extras/univention/__init__.pyc
+${PYSITELIB}/ansible/modules/extras/univention/__init__.pyo
+${PYSITELIB}/ansible/modules/extras/univention/udm_dns_record.py
+${PYSITELIB}/ansible/modules/extras/univention/udm_dns_record.pyc
+${PYSITELIB}/ansible/modules/extras/univention/udm_dns_record.pyo
+${PYSITELIB}/ansible/modules/extras/univention/udm_dns_zone.py
+${PYSITELIB}/ansible/modules/extras/univention/udm_dns_zone.pyc
+${PYSITELIB}/ansible/modules/extras/univention/udm_dns_zone.pyo
+${PYSITELIB}/ansible/modules/extras/univention/udm_group.py
+${PYSITELIB}/ansible/modules/extras/univention/udm_group.pyc
+${PYSITELIB}/ansible/modules/extras/univention/udm_group.pyo
+${PYSITELIB}/ansible/modules/extras/univention/udm_share.py
+${PYSITELIB}/ansible/modules/extras/univention/udm_share.pyc
+${PYSITELIB}/ansible/modules/extras/univention/udm_share.pyo
+${PYSITELIB}/ansible/modules/extras/univention/udm_user.py
+${PYSITELIB}/ansible/modules/extras/univention/udm_user.pyc
+${PYSITELIB}/ansible/modules/extras/univention/udm_user.pyo
 ${PYSITELIB}/ansible/modules/extras/web_infrastructure/__init__.py
 ${PYSITELIB}/ansible/modules/extras/web_infrastructure/__init__.pyc
 ${PYSITELIB}/ansible/modules/extras/web_infrastructure/__init__.pyo
+${PYSITELIB}/ansible/modules/extras/web_infrastructure/apache2_mod_proxy.py
+${PYSITELIB}/ansible/modules/extras/web_infrastructure/apache2_mod_proxy.pyc
+${PYSITELIB}/ansible/modules/extras/web_infrastructure/apache2_mod_proxy.pyo
 ${PYSITELIB}/ansible/modules/extras/web_infrastructure/deploy_helper.py
 ${PYSITELIB}/ansible/modules/extras/web_infrastructure/deploy_helper.pyc
 ${PYSITELIB}/ansible/modules/extras/web_infrastructure/deploy_helper.pyo
@@ -2108,9 +2832,18 @@ ${PYSITELIB}/ansible/modules/extras/web_infrastructure/ejabberd_user.pyo
 ${PYSITELIB}/ansible/modules/extras/web_infrastructure/jboss.py
 ${PYSITELIB}/ansible/modules/extras/web_infrastructure/jboss.pyc
 ${PYSITELIB}/ansible/modules/extras/web_infrastructure/jboss.pyo
+${PYSITELIB}/ansible/modules/extras/web_infrastructure/jenkins_job.py
+${PYSITELIB}/ansible/modules/extras/web_infrastructure/jenkins_job.pyc
+${PYSITELIB}/ansible/modules/extras/web_infrastructure/jenkins_job.pyo
+${PYSITELIB}/ansible/modules/extras/web_infrastructure/jenkins_plugin.py
+${PYSITELIB}/ansible/modules/extras/web_infrastructure/jenkins_plugin.pyc
+${PYSITELIB}/ansible/modules/extras/web_infrastructure/jenkins_plugin.pyo
 ${PYSITELIB}/ansible/modules/extras/web_infrastructure/jira.py
 ${PYSITELIB}/ansible/modules/extras/web_infrastructure/jira.pyc
 ${PYSITELIB}/ansible/modules/extras/web_infrastructure/jira.pyo
+${PYSITELIB}/ansible/modules/extras/web_infrastructure/letsencrypt.py
+${PYSITELIB}/ansible/modules/extras/web_infrastructure/letsencrypt.pyc
+${PYSITELIB}/ansible/modules/extras/web_infrastructure/letsencrypt.pyo
 ${PYSITELIB}/ansible/modules/extras/web_infrastructure/taiga_issue.py
 ${PYSITELIB}/ansible/modules/extras/web_infrastructure/taiga_issue.pyc
 ${PYSITELIB}/ansible/modules/extras/web_infrastructure/taiga_issue.pyo
@@ -2185,6 +2918,10 @@ ${PYSITELIB}/ansible/modules/extras/windows/win_regmerge.ps1
 ${PYSITELIB}/ansible/modules/extras/windows/win_regmerge.py
 ${PYSITELIB}/ansible/modules/extras/windows/win_regmerge.pyc
 ${PYSITELIB}/ansible/modules/extras/windows/win_regmerge.pyo
+${PYSITELIB}/ansible/modules/extras/windows/win_robocopy.ps1
+${PYSITELIB}/ansible/modules/extras/windows/win_robocopy.py
+${PYSITELIB}/ansible/modules/extras/windows/win_robocopy.pyc
+${PYSITELIB}/ansible/modules/extras/windows/win_robocopy.pyo
 ${PYSITELIB}/ansible/modules/extras/windows/win_scheduled_task.ps1
 ${PYSITELIB}/ansible/modules/extras/windows/win_scheduled_task.py
 ${PYSITELIB}/ansible/modules/extras/windows/win_scheduled_task.pyc
@@ -2213,15 +2950,6 @@ ${PYSITELIB}/ansible/modules/extras/windows/win_webpicmd.ps1
 ${PYSITELIB}/ansible/modules/extras/windows/win_webpicmd.py
 ${PYSITELIB}/ansible/modules/extras/windows/win_webpicmd.pyc
 ${PYSITELIB}/ansible/modules/extras/windows/win_webpicmd.pyo
-${PYSITELIB}/ansible/new_inventory/__init__.py
-${PYSITELIB}/ansible/new_inventory/__init__.pyc
-${PYSITELIB}/ansible/new_inventory/__init__.pyo
-${PYSITELIB}/ansible/new_inventory/group.py
-${PYSITELIB}/ansible/new_inventory/group.pyc
-${PYSITELIB}/ansible/new_inventory/group.pyo
-${PYSITELIB}/ansible/new_inventory/host.py
-${PYSITELIB}/ansible/new_inventory/host.pyc
-${PYSITELIB}/ansible/new_inventory/host.pyo
 ${PYSITELIB}/ansible/parsing/__init__.py
 ${PYSITELIB}/ansible/parsing/__init__.pyc
 ${PYSITELIB}/ansible/parsing/__init__.pyo
@@ -2321,6 +3049,9 @@ ${PYSITELIB}/ansible/playbook/role/metadata.pyo
 ${PYSITELIB}/ansible/playbook/role/requirement.py
 ${PYSITELIB}/ansible/playbook/role/requirement.pyc
 ${PYSITELIB}/ansible/playbook/role/requirement.pyo
+${PYSITELIB}/ansible/playbook/role_include.py
+${PYSITELIB}/ansible/playbook/role_include.pyc
+${PYSITELIB}/ansible/playbook/role_include.pyo
 ${PYSITELIB}/ansible/playbook/taggable.py
 ${PYSITELIB}/ansible/playbook/taggable.pyc
 ${PYSITELIB}/ansible/playbook/taggable.pyo
@@ -2345,6 +3076,12 @@ ${PYSITELIB}/ansible/plugins/action/__init__.pyo
 ${PYSITELIB}/ansible/plugins/action/add_host.py
 ${PYSITELIB}/ansible/plugins/action/add_host.pyc
 ${PYSITELIB}/ansible/plugins/action/add_host.pyo
+${PYSITELIB}/ansible/plugins/action/asa_config.py
+${PYSITELIB}/ansible/plugins/action/asa_config.pyc
+${PYSITELIB}/ansible/plugins/action/asa_config.pyo
+${PYSITELIB}/ansible/plugins/action/asa_template.py
+${PYSITELIB}/ansible/plugins/action/asa_template.pyc
+${PYSITELIB}/ansible/plugins/action/asa_template.pyo
 ${PYSITELIB}/ansible/plugins/action/assemble.py
 ${PYSITELIB}/ansible/plugins/action/assemble.pyc
 ${PYSITELIB}/ansible/plugins/action/assemble.pyo
@@ -2360,6 +3097,18 @@ ${PYSITELIB}/ansible/plugins/action/copy.pyo
 ${PYSITELIB}/ansible/plugins/action/debug.py
 ${PYSITELIB}/ansible/plugins/action/debug.pyc
 ${PYSITELIB}/ansible/plugins/action/debug.pyo
+${PYSITELIB}/ansible/plugins/action/dellos10_config.py
+${PYSITELIB}/ansible/plugins/action/dellos10_config.pyc
+${PYSITELIB}/ansible/plugins/action/dellos10_config.pyo
+${PYSITELIB}/ansible/plugins/action/dellos6_config.py
+${PYSITELIB}/ansible/plugins/action/dellos6_config.pyc
+${PYSITELIB}/ansible/plugins/action/dellos6_config.pyo
+${PYSITELIB}/ansible/plugins/action/dellos9_config.py
+${PYSITELIB}/ansible/plugins/action/dellos9_config.pyc
+${PYSITELIB}/ansible/plugins/action/dellos9_config.pyo
+${PYSITELIB}/ansible/plugins/action/eos_config.py
+${PYSITELIB}/ansible/plugins/action/eos_config.pyc
+${PYSITELIB}/ansible/plugins/action/eos_config.pyo
 ${PYSITELIB}/ansible/plugins/action/eos_template.py
 ${PYSITELIB}/ansible/plugins/action/eos_template.pyc
 ${PYSITELIB}/ansible/plugins/action/eos_template.pyo
@@ -2375,24 +3124,42 @@ ${PYSITELIB}/ansible/plugins/action/group_by.pyo
 ${PYSITELIB}/ansible/plugins/action/include_vars.py
 ${PYSITELIB}/ansible/plugins/action/include_vars.pyc
 ${PYSITELIB}/ansible/plugins/action/include_vars.pyo
+${PYSITELIB}/ansible/plugins/action/ios_config.py
+${PYSITELIB}/ansible/plugins/action/ios_config.pyc
+${PYSITELIB}/ansible/plugins/action/ios_config.pyo
 ${PYSITELIB}/ansible/plugins/action/ios_template.py
 ${PYSITELIB}/ansible/plugins/action/ios_template.pyc
 ${PYSITELIB}/ansible/plugins/action/ios_template.pyo
+${PYSITELIB}/ansible/plugins/action/iosxr_config.py
+${PYSITELIB}/ansible/plugins/action/iosxr_config.pyc
+${PYSITELIB}/ansible/plugins/action/iosxr_config.pyo
 ${PYSITELIB}/ansible/plugins/action/iosxr_template.py
 ${PYSITELIB}/ansible/plugins/action/iosxr_template.pyc
 ${PYSITELIB}/ansible/plugins/action/iosxr_template.pyo
+${PYSITELIB}/ansible/plugins/action/junos_config.py
+${PYSITELIB}/ansible/plugins/action/junos_config.pyc
+${PYSITELIB}/ansible/plugins/action/junos_config.pyo
 ${PYSITELIB}/ansible/plugins/action/junos_template.py
 ${PYSITELIB}/ansible/plugins/action/junos_template.pyc
 ${PYSITELIB}/ansible/plugins/action/junos_template.pyo
+${PYSITELIB}/ansible/plugins/action/net_config.py
+${PYSITELIB}/ansible/plugins/action/net_config.pyc
+${PYSITELIB}/ansible/plugins/action/net_config.pyo
 ${PYSITELIB}/ansible/plugins/action/net_template.py
 ${PYSITELIB}/ansible/plugins/action/net_template.pyc
 ${PYSITELIB}/ansible/plugins/action/net_template.pyo
 ${PYSITELIB}/ansible/plugins/action/normal.py
 ${PYSITELIB}/ansible/plugins/action/normal.pyc
 ${PYSITELIB}/ansible/plugins/action/normal.pyo
+${PYSITELIB}/ansible/plugins/action/nxos_config.py
+${PYSITELIB}/ansible/plugins/action/nxos_config.pyc
+${PYSITELIB}/ansible/plugins/action/nxos_config.pyo
 ${PYSITELIB}/ansible/plugins/action/nxos_template.py
 ${PYSITELIB}/ansible/plugins/action/nxos_template.pyc
 ${PYSITELIB}/ansible/plugins/action/nxos_template.pyo
+${PYSITELIB}/ansible/plugins/action/ops_config.py
+${PYSITELIB}/ansible/plugins/action/ops_config.pyc
+${PYSITELIB}/ansible/plugins/action/ops_config.pyo
 ${PYSITELIB}/ansible/plugins/action/ops_template.py
 ${PYSITELIB}/ansible/plugins/action/ops_template.pyc
 ${PYSITELIB}/ansible/plugins/action/ops_template.pyo
@@ -2411,9 +3178,15 @@ ${PYSITELIB}/ansible/plugins/action/raw.pyo
 ${PYSITELIB}/ansible/plugins/action/script.py
 ${PYSITELIB}/ansible/plugins/action/script.pyc
 ${PYSITELIB}/ansible/plugins/action/script.pyo
+${PYSITELIB}/ansible/plugins/action/service.py
+${PYSITELIB}/ansible/plugins/action/service.pyc
+${PYSITELIB}/ansible/plugins/action/service.pyo
 ${PYSITELIB}/ansible/plugins/action/set_fact.py
 ${PYSITELIB}/ansible/plugins/action/set_fact.pyc
 ${PYSITELIB}/ansible/plugins/action/set_fact.pyo
+${PYSITELIB}/ansible/plugins/action/sros_config.py
+${PYSITELIB}/ansible/plugins/action/sros_config.pyc
+${PYSITELIB}/ansible/plugins/action/sros_config.pyo
 ${PYSITELIB}/ansible/plugins/action/synchronize.py
 ${PYSITELIB}/ansible/plugins/action/synchronize.pyc
 ${PYSITELIB}/ansible/plugins/action/synchronize.pyo
@@ -2423,6 +3196,9 @@ ${PYSITELIB}/ansible/plugins/action/template.pyo
 ${PYSITELIB}/ansible/plugins/action/unarchive.py
 ${PYSITELIB}/ansible/plugins/action/unarchive.pyc
 ${PYSITELIB}/ansible/plugins/action/unarchive.pyo
+${PYSITELIB}/ansible/plugins/action/vyos_config.py
+${PYSITELIB}/ansible/plugins/action/vyos_config.pyc
+${PYSITELIB}/ansible/plugins/action/vyos_config.pyo
 ${PYSITELIB}/ansible/plugins/action/win_copy.py
 ${PYSITELIB}/ansible/plugins/action/win_copy.pyc
 ${PYSITELIB}/ansible/plugins/action/win_copy.pyo
@@ -2459,15 +3235,27 @@ ${PYSITELIB}/ansible/plugins/callback/actionable.pyo
 ${PYSITELIB}/ansible/plugins/callback/context_demo.py
 ${PYSITELIB}/ansible/plugins/callback/context_demo.pyc
 ${PYSITELIB}/ansible/plugins/callback/context_demo.pyo
+${PYSITELIB}/ansible/plugins/callback/debug.py
+${PYSITELIB}/ansible/plugins/callback/debug.pyc
+${PYSITELIB}/ansible/plugins/callback/debug.pyo
 ${PYSITELIB}/ansible/plugins/callback/default.py
 ${PYSITELIB}/ansible/plugins/callback/default.pyc
 ${PYSITELIB}/ansible/plugins/callback/default.pyo
+${PYSITELIB}/ansible/plugins/callback/foreman.py
+${PYSITELIB}/ansible/plugins/callback/foreman.pyc
+${PYSITELIB}/ansible/plugins/callback/foreman.pyo
 ${PYSITELIB}/ansible/plugins/callback/hipchat.py
 ${PYSITELIB}/ansible/plugins/callback/hipchat.pyc
 ${PYSITELIB}/ansible/plugins/callback/hipchat.pyo
+${PYSITELIB}/ansible/plugins/callback/jabber.py
+${PYSITELIB}/ansible/plugins/callback/jabber.pyc
+${PYSITELIB}/ansible/plugins/callback/jabber.pyo
 ${PYSITELIB}/ansible/plugins/callback/json.py
 ${PYSITELIB}/ansible/plugins/callback/json.pyc
 ${PYSITELIB}/ansible/plugins/callback/json.pyo
+${PYSITELIB}/ansible/plugins/callback/junit.py
+${PYSITELIB}/ansible/plugins/callback/junit.pyc
+${PYSITELIB}/ansible/plugins/callback/junit.pyo
 ${PYSITELIB}/ansible/plugins/callback/log_plays.py
 ${PYSITELIB}/ansible/plugins/callback/log_plays.pyc
 ${PYSITELIB}/ansible/plugins/callback/log_plays.pyo
@@ -2528,6 +3316,9 @@ ${PYSITELIB}/ansible/plugins/connection/libvirt_lxc.pyo
 ${PYSITELIB}/ansible/plugins/connection/local.py
 ${PYSITELIB}/ansible/plugins/connection/local.pyc
 ${PYSITELIB}/ansible/plugins/connection/local.pyo
+${PYSITELIB}/ansible/plugins/connection/lxc.py
+${PYSITELIB}/ansible/plugins/connection/lxc.pyc
+${PYSITELIB}/ansible/plugins/connection/lxc.pyo
 ${PYSITELIB}/ansible/plugins/connection/lxd.py
 ${PYSITELIB}/ansible/plugins/connection/lxd.pyc
 ${PYSITELIB}/ansible/plugins/connection/lxd.pyo
@@ -2552,24 +3343,12 @@ ${PYSITELIB}/ansible/plugins/filter/core.pyo
 ${PYSITELIB}/ansible/plugins/filter/ipaddr.py
 ${PYSITELIB}/ansible/plugins/filter/ipaddr.pyc
 ${PYSITELIB}/ansible/plugins/filter/ipaddr.pyo
+${PYSITELIB}/ansible/plugins/filter/json_query.py
+${PYSITELIB}/ansible/plugins/filter/json_query.pyc
+${PYSITELIB}/ansible/plugins/filter/json_query.pyo
 ${PYSITELIB}/ansible/plugins/filter/mathstuff.py
 ${PYSITELIB}/ansible/plugins/filter/mathstuff.pyc
 ${PYSITELIB}/ansible/plugins/filter/mathstuff.pyo
-${PYSITELIB}/ansible/plugins/inventory/__init__.py
-${PYSITELIB}/ansible/plugins/inventory/__init__.pyc
-${PYSITELIB}/ansible/plugins/inventory/__init__.pyo
-${PYSITELIB}/ansible/plugins/inventory/aggregate.py
-${PYSITELIB}/ansible/plugins/inventory/aggregate.pyc
-${PYSITELIB}/ansible/plugins/inventory/aggregate.pyo
-${PYSITELIB}/ansible/plugins/inventory/directory.py
-${PYSITELIB}/ansible/plugins/inventory/directory.pyc
-${PYSITELIB}/ansible/plugins/inventory/directory.pyo
-${PYSITELIB}/ansible/plugins/inventory/ini.py
-${PYSITELIB}/ansible/plugins/inventory/ini.pyc
-${PYSITELIB}/ansible/plugins/inventory/ini.pyo
-${PYSITELIB}/ansible/plugins/inventory/script.py
-${PYSITELIB}/ansible/plugins/inventory/script.pyc
-${PYSITELIB}/ansible/plugins/inventory/script.pyo
 ${PYSITELIB}/ansible/plugins/lookup/__init__.py
 ${PYSITELIB}/ansible/plugins/lookup/__init__.pyc
 ${PYSITELIB}/ansible/plugins/lookup/__init__.pyo
@@ -2606,6 +3385,9 @@ ${PYSITELIB}/ansible/plugins/lookup/file.pyo
 ${PYSITELIB}/ansible/plugins/lookup/fileglob.py
 ${PYSITELIB}/ansible/plugins/lookup/fileglob.pyc
 ${PYSITELIB}/ansible/plugins/lookup/fileglob.pyo
+${PYSITELIB}/ansible/plugins/lookup/filetree.py
+${PYSITELIB}/ansible/plugins/lookup/filetree.pyc
+${PYSITELIB}/ansible/plugins/lookup/filetree.pyo
 ${PYSITELIB}/ansible/plugins/lookup/first_found.py
 ${PYSITELIB}/ansible/plugins/lookup/first_found.pyc
 ${PYSITELIB}/ansible/plugins/lookup/first_found.pyo
@@ -2744,6 +3526,9 @@ ${PYSITELIB}/ansible/utils/encrypt.pyo
 ${PYSITELIB}/ansible/utils/hashing.py
 ${PYSITELIB}/ansible/utils/hashing.pyc
 ${PYSITELIB}/ansible/utils/hashing.pyo
+${PYSITELIB}/ansible/utils/helpers.py
+${PYSITELIB}/ansible/utils/helpers.pyc
+${PYSITELIB}/ansible/utils/helpers.pyo
 ${PYSITELIB}/ansible/utils/listify.py
 ${PYSITELIB}/ansible/utils/listify.pyc
 ${PYSITELIB}/ansible/utils/listify.pyo
@@ -2753,6 +3538,9 @@ ${PYSITELIB}/ansible/utils/module_docs.pyo
 ${PYSITELIB}/ansible/utils/module_docs_fragments/__init__.py
 ${PYSITELIB}/ansible/utils/module_docs_fragments/__init__.pyc
 ${PYSITELIB}/ansible/utils/module_docs_fragments/__init__.pyo
+${PYSITELIB}/ansible/utils/module_docs_fragments/asa.py
+${PYSITELIB}/ansible/utils/module_docs_fragments/asa.pyc
+${PYSITELIB}/ansible/utils/module_docs_fragments/asa.pyo
 ${PYSITELIB}/ansible/utils/module_docs_fragments/auth_basic.py
 ${PYSITELIB}/ansible/utils/module_docs_fragments/auth_basic.pyc
 ${PYSITELIB}/ansible/utils/module_docs_fragments/auth_basic.pyo
@@ -2771,6 +3559,15 @@ ${PYSITELIB}/ansible/utils/module_docs_fragments/backup.pyo
 ${PYSITELIB}/ansible/utils/module_docs_fragments/cloudstack.py
 ${PYSITELIB}/ansible/utils/module_docs_fragments/cloudstack.pyc
 ${PYSITELIB}/ansible/utils/module_docs_fragments/cloudstack.pyo
+${PYSITELIB}/ansible/utils/module_docs_fragments/dellos10.py
+${PYSITELIB}/ansible/utils/module_docs_fragments/dellos10.pyc
+${PYSITELIB}/ansible/utils/module_docs_fragments/dellos10.pyo
+${PYSITELIB}/ansible/utils/module_docs_fragments/dellos6.py
+${PYSITELIB}/ansible/utils/module_docs_fragments/dellos6.pyc
+${PYSITELIB}/ansible/utils/module_docs_fragments/dellos6.pyo
+${PYSITELIB}/ansible/utils/module_docs_fragments/dellos9.py
+${PYSITELIB}/ansible/utils/module_docs_fragments/dellos9.pyc
+${PYSITELIB}/ansible/utils/module_docs_fragments/dellos9.pyo
 ${PYSITELIB}/ansible/utils/module_docs_fragments/docker.py
 ${PYSITELIB}/ansible/utils/module_docs_fragments/docker.pyc
 ${PYSITELIB}/ansible/utils/module_docs_fragments/docker.pyo
@@ -2780,6 +3577,9 @@ ${PYSITELIB}/ansible/utils/module_docs_fragments/ec2.pyo
 ${PYSITELIB}/ansible/utils/module_docs_fragments/eos.py
 ${PYSITELIB}/ansible/utils/module_docs_fragments/eos.pyc
 ${PYSITELIB}/ansible/utils/module_docs_fragments/eos.pyo
+${PYSITELIB}/ansible/utils/module_docs_fragments/f5.py
+${PYSITELIB}/ansible/utils/module_docs_fragments/f5.pyc
+${PYSITELIB}/ansible/utils/module_docs_fragments/f5.pyo
 ${PYSITELIB}/ansible/utils/module_docs_fragments/files.py
 ${PYSITELIB}/ansible/utils/module_docs_fragments/files.pyc
 ${PYSITELIB}/ansible/utils/module_docs_fragments/files.pyo
@@ -2804,9 +3604,18 @@ ${PYSITELIB}/ansible/utils/module_docs_fragments/openstack.pyo
 ${PYSITELIB}/ansible/utils/module_docs_fragments/openswitch.py
 ${PYSITELIB}/ansible/utils/module_docs_fragments/openswitch.pyc
 ${PYSITELIB}/ansible/utils/module_docs_fragments/openswitch.pyo
+${PYSITELIB}/ansible/utils/module_docs_fragments/ovirt.py
+${PYSITELIB}/ansible/utils/module_docs_fragments/ovirt.pyc
+${PYSITELIB}/ansible/utils/module_docs_fragments/ovirt.pyo
 ${PYSITELIB}/ansible/utils/module_docs_fragments/rackspace.py
 ${PYSITELIB}/ansible/utils/module_docs_fragments/rackspace.pyc
 ${PYSITELIB}/ansible/utils/module_docs_fragments/rackspace.pyo
+${PYSITELIB}/ansible/utils/module_docs_fragments/return_common.py
+${PYSITELIB}/ansible/utils/module_docs_fragments/return_common.pyc
+${PYSITELIB}/ansible/utils/module_docs_fragments/return_common.pyo
+${PYSITELIB}/ansible/utils/module_docs_fragments/sros.py
+${PYSITELIB}/ansible/utils/module_docs_fragments/sros.pyc
+${PYSITELIB}/ansible/utils/module_docs_fragments/sros.pyo
 ${PYSITELIB}/ansible/utils/module_docs_fragments/validate.py
 ${PYSITELIB}/ansible/utils/module_docs_fragments/validate.pyc
 ${PYSITELIB}/ansible/utils/module_docs_fragments/validate.pyo
@@ -2816,12 +3625,18 @@ ${PYSITELIB}/ansible/utils/module_docs_fragments/vca.pyo
 ${PYSITELIB}/ansible/utils/module_docs_fragments/vmware.py
 ${PYSITELIB}/ansible/utils/module_docs_fragments/vmware.pyc
 ${PYSITELIB}/ansible/utils/module_docs_fragments/vmware.pyo
+${PYSITELIB}/ansible/utils/module_docs_fragments/vyos.py
+${PYSITELIB}/ansible/utils/module_docs_fragments/vyos.pyc
+${PYSITELIB}/ansible/utils/module_docs_fragments/vyos.pyo
 ${PYSITELIB}/ansible/utils/path.py
 ${PYSITELIB}/ansible/utils/path.pyc
 ${PYSITELIB}/ansible/utils/path.pyo
 ${PYSITELIB}/ansible/utils/shlex.py
 ${PYSITELIB}/ansible/utils/shlex.pyc
 ${PYSITELIB}/ansible/utils/shlex.pyo
+${PYSITELIB}/ansible/utils/ssh_functions.py
+${PYSITELIB}/ansible/utils/ssh_functions.pyc
+${PYSITELIB}/ansible/utils/ssh_functions.pyo
 ${PYSITELIB}/ansible/utils/unicode.py
 ${PYSITELIB}/ansible/utils/unicode.pyc
 ${PYSITELIB}/ansible/utils/unicode.pyo
diff --git a/ansible/distinfo b/ansible/distinfo
index 72e4633..a2bb608 100644
--- a/ansible/distinfo
+++ b/ansible/distinfo
@@ -1,9 +1,9 @@
 $NetBSD$
 
-SHA1 (ansible-2.1.1.0.tar.gz) = f596a7950ebe839eaf650643e9afeb8c1307817a
-RMD160 (ansible-2.1.1.0.tar.gz) = 44cd107715611b3d4203b9ec5a30668f1bb9601b
-SHA512 (ansible-2.1.1.0.tar.gz) = c6537736fc3776d885fad04d02d0ec3b95e331d988fe4a696be90a7f4b1fa30ff8cbb34701f80857dbdcc049356d501ff2f613f65d2287b2d7b20c08cd7b1cd5
-Size (ansible-2.1.1.0.tar.gz) = 1844349 bytes
+SHA1 (ansible-2.2.0.0.tar.gz) = dd150530be9f75f7b9f716b2044b438494c6605a
+RMD160 (ansible-2.2.0.0.tar.gz) = 87ce9be058eab86a68b239ade29b6e4183a20f90
+SHA512 (ansible-2.2.0.0.tar.gz) = 8bb8360f41e920c46552ead826a342311d0acffa264334c8c8ae868f8bf45caad4ff2b9c9c0ec4e551653edaf80eb49d8dece5c2ba7e1088c2ce74d3ff0e3130
+Size (ansible-2.2.0.0.tar.gz) = 2441851 bytes
 SHA1 (patch-contrib_README.md) = 2ee41243901233670a2e2967b834e3d14e639699
 SHA1 (patch-contrib_inventory_cobbler.py) = 3d5811a00c18556a8993f23e17df6238bde477b5
 SHA1 (patch-contrib_inventory_collins.py) = fd3c4d71d8373488979274a9abb7faad173cc02f
@@ -18,15 +18,12 @@ SHA1 (patch-docs_man_man1_ansible-playbook.1) = a99c088dee56e6d90473d33cf991b2a0
 SHA1 (patch-docs_man_man1_ansible-playbook.1.asciidoc.in) = 30c4b845c94bc8055e1f90f2451ba93a4526b89f
 SHA1 (patch-docs_man_man1_ansible-pull.1) = 1edb0cd6fd6638086982662927e632b979e28235
 SHA1 (patch-docs_man_man1_ansible-pull.1.asciidoc.in) = 320c3610c01d420707e75b0d93058ea2b9047b65
-SHA1 (patch-docs_man_man1_ansible.1) = 7625324222ce6aacfbe31f6551b87ff74f50c296
-SHA1 (patch-docs_man_man1_ansible.1.asciidoc.in) = 007b2304abf2252df9aaa98fa9e37eb9bfcdf137
-SHA1 (patch-examples_ansible.cfg) = 72de9cbce69150a6718439ed46de0816fc17102c
+SHA1 (patch-docs_man_man1_ansible.1) = 661b9d23a21112aa396aa1b727a4757b2123d92a
+SHA1 (patch-docs_man_man1_ansible.1.asciidoc.in) = 90a13993b778b6449de26aea3a4f22f0dd6ddf39
+SHA1 (patch-examples_ansible.cfg) = 35bc550e1d4e498d4d4f588ce2fe6bd8af8ad5bc
 SHA1 (patch-examples_hosts) = d6df854be7ea6fa4978681238f722cc9698bd34e
 SHA1 (patch-lib_ansible_cli_galaxy.py) = 9701c4434c5a39c0d3ce244007e7663fb06d97d3
-SHA1 (patch-lib_ansible_constants.py) = f61d603bf0c4880c96c75965970f4f10b53359d2
-SHA1 (patch-lib_ansible_module__utils_junos.py) = bc03c774ba55aec916c6c918adcaae2dd32e13f9
-SHA1 (patch-lib_ansible_modules_core_network_junos_junos__template.py) = e0c74d47aed32e41f450dc141da9eb90a73a7f35
+SHA1 (patch-lib_ansible_constants.py) = 2ba1813f47e89dc79c4c8ee5698292aa9017c9da
 SHA1 (patch-lib_ansible_modules_core_system_ping.py) = 5fbb798d79e22de60ec736a7e7e96be0fadf4b1f
-SHA1 (patch-lib_ansible_modules_core_system_setup.py) = aece6abe6b7a4464bc86a48b5a289ba04093b193
+SHA1 (patch-lib_ansible_modules_core_system_setup.py) = 44c35e7ba94cb96b1fc4a0501470d2d4d9747150
 SHA1 (patch-lib_ansible_modules_extras_monitoring_nagios.py) = d263a9414d9fdd3c061d7ef2653f0ef648bf359b
-SHA1 (patch-lib_ansible_utils_module__docs__fragments_openstack.py) = 96a1c878c7fc93b6b7d58ec7472ab4a30ff21b39
diff --git a/ansible/patches/patch-docs_man_man1_ansible.1 b/ansible/patches/patch-docs_man_man1_ansible.1
index effbbf2..b26c871 100644
--- a/ansible/patches/patch-docs_man_man1_ansible.1
+++ b/ansible/patches/patch-docs_man_man1_ansible.1
@@ -4,16 +4,16 @@ Fix hardcoded paths.
 
 --- docs/man/man1/ansible.1.orig	2016-01-14 22:33:35.000000000 +0000
 +++ docs/man/man1/ansible.1
-@@ -132,7 +132,7 @@ Show help message and exit\&.
+@@ -137,7 +137,7 @@ Show help message and exit\&.
  The
  \fIPATH\fR
  to the inventory, which defaults to
--\fI/etc/ansible/hosts\fR\&. Alternatively you can use a comma separated list of hosts or single host with traling comma
-+\fI@PKG_SYSCONFDIR@/ansible/hosts\fR\&. Alternatively you can use a comma separated list of hosts or single host with traling comma
+-\fI/etc/ansible/hosts\fR\&. Alternatively you can use a comma separated list of hosts or single host with trailing comma
++\fI@PKG_SYSCONFDIR@/ansible/hosts\fR\&. Alternatively you can use a comma separated list of hosts or single host with trailing comma
  \fIhost,\fR\&.
  .RE
  .PP
-@@ -159,7 +159,7 @@ Execute the module called
+@@ -164,7 +164,7 @@ Execute the module called
  The
  \fIDIRECTORY\fR
  search path to load modules from\&. The default is
@@ -22,7 +22,7 @@ Fix hardcoded paths.
  .RE
  .PP
  \fB\-o\fR, \fB\-\-one\-line\fR
-@@ -273,11 +273,11 @@ ANSIBLE_CONFIG \(em Override the default
+@@ -278,11 +278,11 @@ ANSIBLE_CONFIG \(em Override the default
  Many more are available for most options in ansible\&.cfg
  .SH "FILES"
  .sp
diff --git a/ansible/patches/patch-docs_man_man1_ansible.1.asciidoc.in b/ansible/patches/patch-docs_man_man1_ansible.1.asciidoc.in
index 2ec898e..a851ca9 100644
--- a/ansible/patches/patch-docs_man_man1_ansible.1.asciidoc.in
+++ b/ansible/patches/patch-docs_man_man1_ansible.1.asciidoc.in
@@ -4,16 +4,16 @@ Fix hardcoded paths.
 
 --- docs/man/man1/ansible.1.asciidoc.in.orig	2016-01-14 22:33:27.000000000 +0000
 +++ docs/man/man1/ansible.1.asciidoc.in
-@@ -98,7 +98,7 @@ Show help message and exit.
+@@ -102,7 +102,7 @@ Show help message and exit.
  
  *-i* 'PATH', *--inventory=*'PATH'::
  
 -The 'PATH' to the inventory, which defaults to '/etc/ansible/hosts'.
 +The 'PATH' to the inventory, which defaults to '@PKG_SYSCONFDIR@/ansible/hosts'.
- Alternatively you can use a comma separated list of hosts or single host with traling comma 'host,'.
+ Alternatively you can use a comma separated list of hosts or single host with trailing comma 'host,'.
  
  *-l* 'SUBSET', *--limit=*'SUBSET'::
-@@ -117,7 +117,7 @@ Execute the module called 'NAME'.
+@@ -121,7 +121,7 @@ Execute the module called 'NAME'.
  *-M* 'DIRECTORY', *--module-path=*'DIRECTORY'::
  
  The 'DIRECTORY' search path to load modules from. The default is
@@ -22,7 +22,7 @@ Fix hardcoded paths.
  environment variable.
  
  *-o*, *--one-line*::
-@@ -223,11 +223,11 @@ Many more are available for most options
+@@ -227,11 +227,11 @@ Many more are available for most options
  FILES
  -----
  
diff --git a/ansible/patches/patch-examples_ansible.cfg b/ansible/patches/patch-examples_ansible.cfg
index cbb07f9..6973676 100644
--- a/ansible/patches/patch-examples_ansible.cfg
+++ b/ansible/patches/patch-examples_ansible.cfg
@@ -23,8 +23,8 @@ Fix hardcoded paths.
  #remote_tmp     = $HOME/.ansible/tmp
  #local_tmp      = $HOME/.ansible/tmp
  #forks          = 5
-@@ -46,7 +46,7 @@
- #gather_subset = all
+@@ -53,7 +53,7 @@
+ # gather_timeout = 10
  
  # additional paths to search for roles in, colon separated
 -#roles_path    = /etc/ansible/roles
@@ -32,7 +32,7 @@ Fix hardcoded paths.
  
  # uncomment this to disable SSH key host checking
  #host_key_checking = False
-@@ -74,14 +74,14 @@
+@@ -84,14 +84,14 @@
  #timeout = 10
  
  # default user to use for playbooks if user is not specified
@@ -49,26 +49,12 @@ Fix hardcoded paths.
  #module_name = command
  
  # use this shell for commands executed under sudo
-@@ -159,14 +159,14 @@
- 
- 
- # set plugin path directories here, separate with colons
--#action_plugins     = /usr/share/ansible/plugins/action
--#callback_plugins   = /usr/share/ansible/plugins/callback
--#connection_plugins = /usr/share/ansible/plugins/connection
--#lookup_plugins     = /usr/share/ansible/plugins/lookup
--#vars_plugins       = /usr/share/ansible/plugins/vars
--#filter_plugins     = /usr/share/ansible/plugins/filter
--#test_plugins       = /usr/share/ansible/plugins/test
--#strategy_plugins   = /usr/share/ansible/plugins/strategy
-+#action_plugins     = @PREFIX@/share/ansible/plugins/action
-+#callback_plugins   = @PREFIX@/share/ansible/plugins/callback
-+#connection_plugins = @PREFIX@/share/ansible/plugins/connection
-+#lookup_plugins     = @PREFIX@/share/ansible/plugins/lookup
-+#vars_plugins       = @PREFIX@/share/ansible/plugins/vars
-+#filter_plugins     = @PREFIX@/share/ansible/plugins/filter
-+#test_plugins       = @PREFIX@/share/ansible/plugins/test
-+#strategy_plugins   = @PREFIX@/share/ansible/plugins/strategy
- 
- # by default callbacks are not loaded for /bin/ansible, enable this if you
- # want, for example, a notification or logging callback to also apply to
+@@ -303,7 +303,7 @@
+ # Enabling pipelining reduces the number of SSH operations required to
+ # execute a module on the remote server. This can result in a significant
+ # performance improvement when enabled, however when using "sudo:" you must
+-# first disable 'requiretty' in /etc/sudoers
++# first disable 'requiretty' in @PKG_SYSCONFDIR@/sudoers
+ #
+ # By default, this option is disabled to preserve compatibility with
+ # sudoers configurations that have requiretty (the default on many distros).
diff --git a/ansible/patches/patch-lib_ansible_constants.py b/ansible/patches/patch-lib_ansible_constants.py
index bc5bb93..c4c8647 100644
--- a/ansible/patches/patch-lib_ansible_constants.py
+++ b/ansible/patches/patch-lib_ansible_constants.py
@@ -4,7 +4,7 @@ Fix hardcoded paths.
 
 --- lib/ansible/constants.py.orig	2016-05-25 13:00:55.000000000 +0000
 +++ lib/ansible/constants.py
-@@ -99,7 +99,7 @@ def _get_config(p, section, key, env_var
+@@ -105,7 +105,7 @@ def _get_config(p, section, key, env_var
      return default
  
  def load_config_file():
@@ -13,25 +13,25 @@ Fix hardcoded paths.
  
      p = configparser.ConfigParser()
  
-@@ -110,7 +110,7 @@ def load_config_file():
-             path0 += "/ansible.cfg"
-     path1 = os.getcwd() + "/ansible.cfg"
+@@ -119,7 +119,7 @@ def load_config_file():
+     except OSError:
+         path1 = None
      path2 = os.path.expanduser("~/.ansible.cfg")
 -    path3 = "/etc/ansible/ansible.cfg"
 +    path3 = "@PKG_SYSCONFDIR@/ansible/ansible.cfg"
  
      for path in [path0, path1, path2, path3]:
          if path is not None and os.path.exists(path):
-@@ -139,7 +139,7 @@ DEFAULTS='defaults'
+@@ -148,7 +148,7 @@ DEFAULTS='defaults'
  # FIXME: add deprecation warning when these get set
- #### DEPRECATED VARS #### 
+ #### DEPRECATED VARS ####
  # use more sanely named 'inventory'
 -DEPRECATED_HOST_LIST  = get_config(p, DEFAULTS, 'hostfile', 'ANSIBLE_HOSTS', '/etc/ansible/hosts', ispath=True)
 +DEPRECATED_HOST_LIST  = get_config(p, DEFAULTS, 'hostfile', 'ANSIBLE_HOSTS', '@PKG_SYSCONFDIR@/ansible/hosts', ispath=True)
  # this is not used since 0.5 but people might still have in config
  DEFAULT_PATTERN           = get_config(p, DEFAULTS, 'pattern', None, None)
  
-@@ -147,7 +147,7 @@ DEFAULT_PATTERN           = get_config(p
+@@ -156,7 +156,7 @@ DEFAULT_PATTERN           = get_config(p
  DEFAULT_DEBUG             = get_config(p, DEFAULTS, 'debug',            'ANSIBLE_DEBUG',            False, boolean=True)
  DEFAULT_HOST_LIST         = get_config(p, DEFAULTS,'inventory', 'ANSIBLE_INVENTORY', DEPRECATED_HOST_LIST, ispath=True)
  DEFAULT_MODULE_PATH       = get_config(p, DEFAULTS, 'library',          'ANSIBLE_LIBRARY',          None, ispathlist=True)
@@ -40,9 +40,9 @@ Fix hardcoded paths.
  DEFAULT_REMOTE_TMP        = get_config(p, DEFAULTS, 'remote_tmp',       'ANSIBLE_REMOTE_TEMP',      '$HOME/.ansible/tmp')
  DEFAULT_LOCAL_TMP         = get_config(p, DEFAULTS, 'local_tmp',        'ANSIBLE_LOCAL_TEMP',      '$HOME/.ansible/tmp', istmppath=True)
  DEFAULT_MODULE_NAME       = get_config(p, DEFAULTS, 'module_name',      None,                       'command')
-@@ -229,16 +229,16 @@ DEFAULT_BECOME_ASK_PASS   = get_config(p
+@@ -241,16 +241,16 @@ DEFAULT_BECOME_ASK_PASS   = get_config(p
  # (mapping of param: squash field)
- DEFAULT_SQUASH_ACTIONS         = get_config(p, DEFAULTS, 'squash_actions',     'ANSIBLE_SQUASH_ACTIONS', "apk, apt, dnf, package, pacman, pkgng, yum, zypper", islist=True)
+ DEFAULT_SQUASH_ACTIONS         = get_config(p, DEFAULTS, 'squash_actions',     'ANSIBLE_SQUASH_ACTIONS', "apk, apt, dnf, homebrew, package, pacman, pkgng, yum, zypper", islist=True)
  # paths
 -DEFAULT_ACTION_PLUGIN_PATH     = get_config(p, DEFAULTS, 'action_plugins',     'ANSIBLE_ACTION_PLUGINS', '~/.ansible/plugins/action:/usr/share/ansible/plugins/action', ispathlist=True)
 -DEFAULT_CACHE_PLUGIN_PATH      = get_config(p, DEFAULTS, 'cache_plugins',      'ANSIBLE_CACHE_PLUGINS', '~/.ansible/plugins/cache:/usr/share/ansible/plugins/cache', ispathlist=True)
diff --git a/ansible/patches/patch-lib_ansible_module__utils_junos.py b/ansible/patches/patch-lib_ansible_module__utils_junos.py
deleted file mode 100644
index 5044ca7..0000000
--- a/ansible/patches/patch-lib_ansible_module__utils_junos.py
+++ /dev/null
@@ -1,27 +0,0 @@
-$NetBSD$
-
-Fix to correctly return "set" command variant of config.
-Ref. https://github.com/ansible/ansible/issues/17111
-
---- lib/ansible/module_utils/junos.py.orig  2016-06-24 16:26:59.000000000 +0200
-+++ lib/ansible/module_utils/junos.py    2016-08-25 11:12:20.000000000 +0200
-@@ -259,11 +259,14 @@ class Netconf(object):
-             msg = 'invalid config format... must be one of xml, text, set'
-             self._fail(msg=msg)
- 
--        ele = self.rpc('get_configuration', format=config_format)
--        if config_format in ['text', 'set']:
--           return str(ele.text).strip()
--        elif config_format == "xml":
--            return ele
-+        if config_format == 'set':
-+            return self.run_commands(('show configuration | display set'))[0].strip()
-+        else:
-+            ele = self.rpc('get_configuration', format=config_format)
-+            if config_format in ['text', 'set']:
-+                return str(ele.text).strip()
-+            elif config_format == "xml":
-+                return ele
- 
-     def rpc(self, name, format='xml', **kwargs):
-         meth = getattr(self.device.rpc, name)
diff --git a/ansible/patches/patch-lib_ansible_modules_core_network_junos_junos__template.py b/ansible/patches/patch-lib_ansible_modules_core_network_junos_junos__template.py
deleted file mode 100644
index 75e58a0..0000000
--- a/ansible/patches/patch-lib_ansible_modules_core_network_junos_junos__template.py
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD$
-
-Add fix related to ansible bugid 3962.  
-
---- lib/ansible/modules/core/network/junos/junos_template.py.orig	2016-05-25 13:00:59.000000000 +0000
-+++ lib/ansible/modules/core/network/junos/junos_template.py
-@@ -132,7 +132,7 @@ def main():
-             "set per junos documentation")
- 
-     results = dict(changed=False)
--    results['_backup'] = str(module.get_config()).strip()
-+    results['_backup'] = unicode(module.get_config()).strip()
- 
-     diff = module.load_config(src, action=action, comment=comment,
-             format=fmt, commit=commit, confirm=confirm)
diff --git a/ansible/patches/patch-lib_ansible_modules_core_system_setup.py b/ansible/patches/patch-lib_ansible_modules_core_system_setup.py
index b8ea615..c5805e6 100644
--- a/ansible/patches/patch-lib_ansible_modules_core_system_setup.py
+++ b/ansible/patches/patch-lib_ansible_modules_core_system_setup.py
@@ -4,7 +4,7 @@ Fix hardcoded paths.
 
 --- lib/ansible/modules/core/system/setup.py.orig	2016-05-25 13:00:59.000000000 +0000
 +++ lib/ansible/modules/core/system/setup.py
-@@ -51,11 +51,11 @@ options:
+@@ -57,11 +57,11 @@ options:
                if a file is not executable it is read. Check notes for Windows options. (from 2.1 on)
                File/results format can be json or ini-format
          required: false
@@ -18,9 +18,9 @@ Fix hardcoded paths.
         available to a host. Ansible provides many I(facts) about the system,
         automatically.
  notes:
-@@ -112,7 +112,7 @@ def main():
-         argument_spec = dict(
+@@ -119,7 +119,7 @@ def main():
              gather_subset=dict(default=["all"], required=False, type='list'),
+             gather_timeout=dict(default=10, required=False, type='int'),
              filter=dict(default="*", required=False),
 -            fact_path=dict(default='/etc/ansible/facts.d', required=False),
 +            fact_path=dict(default='@PKG_SYSCONFDIR@/ansible/facts.d', required=False),


Home | Main Index | Thread Index | Old Index