ansible/test/integration/targets
Matthias Fuchs 7871027c9d Share the implementation of hashing for both vars_prompt and password_hash (#21215)
* Share the implementation of hashing for both vars_prompt and password_hash.
* vars_prompt with encrypt does not require passlib for the algorithms
  supported by crypt.
* Additional checks ensure that there is always a result.
  This works around issues in the crypt.crypt python function that returns
  None for algorithms it does not know.
  Some modules (like user module) interprets None as no password at all,
  which is misleading.
* The password_hash filter supports all parameters of passlib.
  This allows users to provide a rounds parameter, fixing #15326.
* password_hash is not restricted to the subset provided by crypt.crypt,
  fixing one half of #17266.
* Updated documentation fixes other half of #17266.
* password_hash does not hard-code the salt-length, which fixes bcrypt
  in connection with passlib.
  bcrypt requires a salt with length 22, which fixes #25347
* Salts are only generated by ansible when using crypt.crypt.
  Otherwise passlib generates them.
* Avoids deprecated functionality of passlib with newer library versions.
* When no rounds are specified for sha256/sha256_crypt and sha512/sha512_crypt
  always uses the default values used by crypt, i.e. 5000 rounds.
  Before when installed passlibs' defaults were used.
  passlib changes its defaults with newer library versions, leading to non
  idempotent behavior.

  NOTE: This will lead to the recalculation of existing hashes generated
        with passlib and without a rounds parameter.
        Yet henceforth the hashes will remain the same.
        No matter the installed passlib version.
        Making these hashes idempotent.

Fixes #15326
Fixes #17266
Fixes #25347 except bcrypt still uses 2a, instead of the suggested 2b.

* random_salt is solely handled by encrypt.py.
  There is no _random_salt function there anymore.
  Also the test moved to test_encrypt.py.
* Uses pytest.skip when passlib is not available, instead of a silent return.
* More checks are executed when passlib is not available.

* Moves tests that require passlib into their own test-function.

* Uses the six library to reraise the exception.

* Fixes integration test.

When no rounds are provided the defaults of crypt are used.
In that case the rounds are not part of the resulting MCF output.
2018-08-27 08:40:41 -07:00
..
aci_aaa_user ACI: Make querying links and nodes possible (#43441) 2018-08-07 23:54:54 +02:00
aci_aaa_user_certificate ACI: Make querying links and nodes possible (#43441) 2018-08-07 23:54:54 +02:00
aci_access_port_to_interface_policy_leaf_profile ACI: Make querying links and nodes possible (#43441) 2018-08-07 23:54:54 +02:00
aci_aep/tasks ACI: Make querying links and nodes possible (#43441) 2018-08-07 23:54:54 +02:00
aci_aep_to_domain ACI: Make querying links and nodes possible (#43441) 2018-08-07 23:54:54 +02:00
aci_ap ACI: Make querying links and nodes possible (#43441) 2018-08-07 23:54:54 +02:00
aci_bd ACI: Make querying links and nodes possible (#43441) 2018-08-07 23:54:54 +02:00
aci_bd_subnet ACI: Make querying links and nodes possible (#43441) 2018-08-07 23:54:54 +02:00
aci_config_rollback ACI: Make querying links and nodes possible (#43441) 2018-08-07 23:54:54 +02:00
aci_config_snapshot ACI: Make querying links and nodes possible (#43441) 2018-08-07 23:54:54 +02:00
aci_contract ACI: Make querying links and nodes possible (#43441) 2018-08-07 23:54:54 +02:00
aci_contract_subject ACI: Make querying links and nodes possible (#43441) 2018-08-07 23:54:54 +02:00
aci_contract_subject_to_filter ACI: Make querying links and nodes possible (#43441) 2018-08-07 23:54:54 +02:00
aci_domain ACI: Make querying links and nodes possible (#43441) 2018-08-07 23:54:54 +02:00
aci_domain_to_vlan_pool ACI: Make querying links and nodes possible (#43441) 2018-08-07 23:54:54 +02:00
aci_encap_pool ACI: Make querying links and nodes possible (#43441) 2018-08-07 23:54:54 +02:00
aci_encap_pool_range ACI: Make querying links and nodes possible (#43441) 2018-08-07 23:54:54 +02:00
aci_epg ACI: Make querying links and nodes possible (#43441) 2018-08-07 23:54:54 +02:00
aci_epg_to_contract ACI: Make querying links and nodes possible (#43441) 2018-08-07 23:54:54 +02:00
aci_epg_to_domain ACI: Make querying links and nodes possible (#43441) 2018-08-07 23:54:54 +02:00
aci_fabric_node ACI: Make querying links and nodes possible (#43441) 2018-08-07 23:54:54 +02:00
aci_filter ACI: Make querying links and nodes possible (#43441) 2018-08-07 23:54:54 +02:00
aci_filter_entry ACI: Make querying links and nodes possible (#43441) 2018-08-07 23:54:54 +02:00
aci_firmware_source ACI: Make querying links and nodes possible (#43441) 2018-08-07 23:54:54 +02:00
aci_interface_policy_leaf_policy_group ACI: Make querying links and nodes possible (#43441) 2018-08-07 23:54:54 +02:00
aci_interface_policy_leaf_profile ACI: Make querying links and nodes possible (#43441) 2018-08-07 23:54:54 +02:00
aci_interface_policy_ospf ACI: Make querying links and nodes possible (#43441) 2018-08-07 23:54:54 +02:00
aci_interface_selector_to_switch_policy_leaf_profile ACI: Make querying links and nodes possible (#43441) 2018-08-07 23:54:54 +02:00
aci_rest ACI: Make querying links and nodes possible (#43441) 2018-08-07 23:54:54 +02:00
aci_static_binding_to_epg ACI: Make querying links and nodes possible (#43441) 2018-08-07 23:54:54 +02:00
aci_switch_leaf_policy_profile ACI: Make querying links and nodes possible (#43441) 2018-08-07 23:54:54 +02:00
aci_switch_leaf_selector ACI: Make querying links and nodes possible (#43441) 2018-08-07 23:54:54 +02:00
aci_switch_policy_vpc_protection_group ACI: Make querying links and nodes possible (#43441) 2018-08-07 23:54:54 +02:00
aci_taboo_contract ACI: Make querying links and nodes possible (#43441) 2018-08-07 23:54:54 +02:00
aci_tenant ACI: Make querying links and nodes possible (#43441) 2018-08-07 23:54:54 +02:00
aci_vlan_pool ACI: Make querying links and nodes possible (#43441) 2018-08-07 23:54:54 +02:00
aci_vlan_pool_encap_block ACI: Make querying links and nodes possible (#43441) 2018-08-07 23:54:54 +02:00
aci_vrf ACI: Make querying links and nodes possible (#43441) 2018-08-07 23:54:54 +02:00
acl Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
acme_account ACME: improve tests (new Pebble version, strict mode) (#44518) 2018-08-22 22:15:35 +02:00
acme_account_facts New acme_account_facts module. (#44301) 2018-08-17 15:32:09 +02:00
acme_certificate ACME: using new acme-test-container (#44095) 2018-08-14 07:35:15 -07:00
acme_certificate_revoke ACME: use Cryptography (if a new enough version is available) instead of OpenSSL (#42170) 2018-08-12 19:12:01 +02:00
acme_challenge_cert_helper ACME: new helper module for ACME challenges which need TLS certs (#43756) 2018-08-22 23:12:43 +02:00
add_host Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
alternatives Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
ansible Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
ansible-galaxy Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
any_errors_fatal Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
apache2_module Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
apt Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
apt_key Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
apt_repository Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
archive Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
args Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
asa_acl
asa_command
asa_config Replace bogus (but routeable) ip addresses with RFC 5737 example addresses (#40554) 2018-05-30 13:03:20 -04:00
assemble Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
async Added an async 'started' test (like 'finished') (#43445) 2018-08-24 01:29:34 +02:00
async_extra_data Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
async_fail Surround top-level function and class definitions with two blank lines. 2018-07-31 12:06:56 -07:00
at Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
authorized_key Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
aws_api_gateway Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
aws_caller_facts added account_alias in the response of module aws_caller_facts (#42345) 2018-08-22 17:21:12 -04:00
aws_config Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
aws_eks aws_eks_cluster: Add wait functionality (#42259) 2018-07-04 22:30:57 +10:00
aws_elasticbeanstalk_app Fix invalid task attrs. ci_complete 2018-08-17 10:22:31 -07:00
aws_glue_connection Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
aws_inspector Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
aws_lambda Make use of Jinja tests 'finished' (#43233) 2018-07-30 10:41:49 +02:00
aws_s3 Make use of Jinja tests 'finished' (#43233) 2018-07-30 10:41:49 +02:00
aws_ses_identity Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
aws_ses_identity_policy Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
aws_ssm_parameters Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
aws_waf_web_acl
azure_rm_acs
azure_rm_aks [new module] Managed Azure Container Service (AKS) (azure_rm_aks) (#35888) 2018-05-16 16:08:27 -07:00
azure_rm_appgateway Move azure_rm_appgateway certs into files. 2018-08-23 21:20:29 -07:00
azure_rm_appserviceplan add azure app service plan facts (#44156) 2018-08-16 16:13:32 +08:00
azure_rm_availabilityset Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
azure_rm_availabilityset_facts Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
azure_rm_containerinstance Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
azure_rm_containerregistry Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
azure_rm_deployment Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
azure_rm_dnsrecordset Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
azure_rm_dnsrecordset_facts Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
azure_rm_dnszone Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
azure_rm_dnszone_facts Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
azure_rm_functionapp remove unstable tag from azure tests (#44258) 2018-08-16 17:44:00 +08:00
azure_rm_image Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
azure_rm_keyvault Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
azure_rm_keyvaultkey Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
azure_rm_keyvaultsecret Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
azure_rm_loadbalancer Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
azure_rm_managed_disk Correct task args in azure_rm_managed_disk test. 2018-08-08 09:37:20 -07:00
azure_rm_mysqldatabase adding mysql database facts (#43322) 2018-08-17 10:36:13 +08:00
azure_rm_mysqlserver adding mysqlserver facts (#43321) 2018-08-16 17:10:07 +08:00
azure_rm_networkinterface Add enable_ip_forwarding option to azure_rm_networkinterface; Fixes #43276 (#43335) 2018-08-10 14:14:48 -07:00
azure_rm_postgresqldatabase adding postgresql database facts (#43327) 2018-08-17 10:35:22 +08:00
azure_rm_postgresqlserver adding postgresql server facts (#43328) 2018-08-22 15:18:01 -07:00
azure_rm_publicipaddress azure_rm_common: only remove tags from new_tags if append_tags is not… (#24040) 2018-08-16 11:35:39 +08:00
azure_rm_resource fix for special case of last element of url (#43354) 2018-07-31 16:31:08 +08:00
azure_rm_routetable Add route table and route module (#41175) 2018-08-22 15:24:57 -07:00
azure_rm_securitygroup azure_rm_common: only remove tags from new_tags if append_tags is not… (#24040) 2018-08-16 11:35:39 +08:00
azure_rm_sqldatabase remove unstable tag from azure tests (#44258) 2018-08-16 17:44:00 +08:00
azure_rm_sqlserver Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
azure_rm_sqlserver_facts remove unstable tag from azure tests (#44258) 2018-08-16 17:44:00 +08:00
azure_rm_storageaccount azure_rm_common: only remove tags from new_tags if append_tags is not… (#24040) 2018-08-16 11:35:39 +08:00
azure_rm_storageblob Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
azure_rm_subnet Add route table and route module (#41175) 2018-08-22 15:24:57 -07:00
azure_rm_virtualmachine Adding os_disk_size_gb parameter to Virtual Machine (#43316) 2018-08-23 15:36:58 +08:00
azure_rm_virtualmachine_extension Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
azure_rm_virtualmachine_scaleset Support for accelerated networking and network security group for scaleset vms (#34788) 2018-08-16 14:52:12 -07:00
azure_rm_virtualmachineimage_facts Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
azure_rm_virtualnetwork azure_rm_common: only remove tags from new_tags if append_tags is not… (#24040) 2018-08-16 11:35:39 +08:00
azure_rm_webapp add azure_rm_webapp (#40005) 2018-08-07 15:53:15 -07:00
become Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
binary Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
binary_modules
binary_modules_posix Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
binary_modules_winrm Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
blockinfile Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
blocks Add new host_pinned strategy (#44586) 2018-08-23 20:16:32 -04:00
callback_default Bugfixes and integration tests for 'default' callback plugin 2018-08-15 07:56:17 -07:00
callback_retry_task_name Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
certificate_complete_chain Adding module which allows to complete certificate chains (#44169) 2018-08-23 23:18:36 +02:00
changed_when Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
check_mode Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
cloud_init_data_facts Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
cloudformation_stack_set New module cloudformation_stack_set (#41669) 2018-08-20 14:38:14 -04:00
cloudfront_distribution Handle FieldLevelEncryptionId in cloudfront_distribution (#41770) 2018-07-19 08:27:13 -04:00
command_shell Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
conditionals Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
connection Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
connection_buildah
connection_chroot Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
connection_docker
connection_jail
connection_libvirt_lxc
connection_local Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
connection_lxc
connection_lxd
connection_paramiko_ssh Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
connection_posix
connection_psrp psrp: Added new Windows connection plugin (#41729) 2018-08-21 16:43:13 -07:00
connection_ssh Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
connection_winrm Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
copy Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
cs_account Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
cs_affinitygroup Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
cs_cluster Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
cs_common cs_instance: implement host migration support (#40309) 2018-05-25 11:20:04 +02:00
cs_configuration Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
cs_disk_offering Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
cs_domain Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
cs_firewall Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
cs_host Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
cs_instance Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
cs_instance_facts Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
cs_instance_nic Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
cs_instance_nic_secondaryip Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
cs_instancegroup Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
cs_ip_address Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
cs_iso Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
cs_loadbalancer_rule Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
cs_network Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
cs_network_acl Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
cs_network_acl_rule Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
cs_network_offering Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
cs_pod cs_pod: workaround for 4.11 API break (#43944) 2018-08-11 09:22:14 +02:00
cs_portforward Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
cs_project Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
cs_region Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
cs_resourcelimit Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
cs_role Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
cs_role_permission Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
cs_router Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
cs_securitygroup Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
cs_securitygroup_rule Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
cs_service_offering Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
cs_snapshot_policy Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
cs_sshkeypair Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
cs_storage_pool Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
cs_user Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
cs_vmsnapshot Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
cs_volume Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
cs_vpc Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
cs_vpc_offering Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
cs_vpn_connection Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
cs_vpn_customer_gateway Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
cs_vpn_gateway Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
cs_zone Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
cs_zone_facts Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
debconf Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
debug Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
delegate_to don't assume all delegation subkeys exist (#43032) 2018-07-24 08:54:58 -04:00
dellos6_command
dellos6_config Replace bogus (but routeable) ip addresses with RFC 5737 example addresses (#40554) 2018-05-30 13:03:20 -04:00
dellos6_facts
dellos9_command
dellos9_config Replace bogus (but routeable) ip addresses with RFC 5737 example addresses (#40554) 2018-05-30 13:03:20 -04:00
dellos9_facts
dellos10_command
dellos10_config Replace bogus (but routeable) ip addresses with RFC 5737 example addresses (#40554) 2018-05-30 13:03:20 -04:00
dellos10_facts
deploy_helper Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
dnf Refactor yum and dnf, add feature parity (#43621) 2018-08-17 11:15:11 -04:00
docker_secret Docker integration tests: factorize setup (#42306) 2018-08-09 10:37:03 -07:00
docker_swarm Docker integration tests: factorize setup (#42306) 2018-08-09 10:37:03 -07:00
dpkg_selections Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
ec2_ami Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
ec2_asg Make use of Jinja tests 'finished' (#43233) 2018-07-30 10:41:49 +02:00
ec2_elb_lb Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
ec2_group Add diff mode for ec2_group (#44533) 2018-08-23 19:43:18 -04:00
ec2_instance ec2_instance.py: Add CpuOptions to EC2 (#43799) 2018-08-20 20:49:00 +10:00
ec2_key Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
ec2_metadata_facts Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
ec2_tag Port ec2_tag to boto3 (#39712) 2018-07-27 15:45:18 -04:00
ec2_vol Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
ec2_vpc_egress_igw Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
ec2_vpc_net Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
ec2_vpc_route_table Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
ec2_vpc_subnet Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
ec2_vpc_vgw Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
ec2_vpc_vpn_facts Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
ecs_cluster ecs_taskdefinition can absent without containers argument (#41398) 2018-07-12 23:16:41 +10:00
ecs_ecr Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
efs_facts efs_facts: improve performance by reducing the number of api calls (#36520) 2018-07-08 16:34:22 -04:00
elb_application_lb elb_application_lb purge rules option (#43113) 2018-07-25 20:55:34 +10:00
elb_classic_lb Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
elb_network_lb New module: AWS Network load balancer (#33808) 2018-05-24 16:38:34 -04:00
elb_target
embedded_module Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
environment Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
eos_banner Fix eapi tests to use become (#40838) 2018-05-29 14:18:03 -04:00
eos_command Fix eos_command integration test failures (#43922) 2018-08-10 15:20:38 +05:30
eos_config Replace missing become: yes (#44312) 2018-08-17 12:50:04 -04:00
eos_eapi Remove local from most eos tests now that provider is out (#40875) 2018-05-30 08:40:28 -04:00
eos_facts Fix eapi tests to use become (#40838) 2018-05-29 14:18:03 -04:00
eos_interface Remove local from most eos tests now that provider is out (#40875) 2018-05-30 08:40:28 -04:00
eos_l2_interface Remove local from most eos tests now that provider is out (#40875) 2018-05-30 08:40:28 -04:00
eos_l3_interface Remove local from most eos tests now that provider is out (#40875) 2018-05-30 08:40:28 -04:00
eos_linkagg Remove local from most eos tests now that provider is out (#40875) 2018-05-30 08:40:28 -04:00
eos_lldp Remove local from most eos tests now that provider is out (#40875) 2018-05-30 08:40:28 -04:00
eos_logging Fixes eos_logging idempotence issue #31862 (#40604) 2018-05-30 18:21:54 +05:30
eos_smoke Remove unnecessary features from cli_command (#43829) 2018-08-09 12:46:38 -04:00
eos_static_route Remove local from most eos tests now that provider is out (#40875) 2018-05-30 08:40:28 -04:00
eos_system Replace bogus (but routeable) ip addresses with RFC 5737 example addresses (#40554) 2018-05-30 13:03:20 -04:00
eos_user Remove local from most eos tests now that provider is out (#40875) 2018-05-30 08:40:28 -04:00
eos_vlan Remove local from most eos tests now that provider is out (#40875) 2018-05-30 08:40:28 -04:00
eos_vrf Remove local from most eos tests now that provider is out (#40875) 2018-05-30 08:40:28 -04:00
etcd3 Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
expect Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
facts_d Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
failed_when Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
fetch Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
file Add new parameters to manage mtime and atime for file module, fixes #30226 (#43230) 2018-08-23 17:20:54 -07:00
filesystem filesystem: add f2fs integration tests 2018-08-03 11:57:22 +02:00
filters Use newer is_sequence function instead of MutableSequence (#44331) 2018-08-21 10:42:11 -05:00
find Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
firewalld Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
fortios_address Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
fortios_ipv4_policy Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
gathering_facts gather facts improvements (#44008) 2018-08-23 11:36:06 -04:00
gcp_compute_address Bug fixes for gcp_compute_address (#42704) 2018-08-13 10:50:04 -04:00
gcp_compute_backend_bucket Bug fixes for gcp_compute_backend_bucket (#42804) 2018-08-13 10:54:56 -04:00
gcp_compute_backend_service Bug fixes for gcp_compute_backend_service (#42805) 2018-08-13 10:55:21 -04:00
gcp_compute_disk Bug fixes for gcp_compute_disk (#42806) 2018-08-13 12:04:57 -04:00
gcp_compute_firewall Bug fixes for gcp_compute_firewall (#42807) 2018-08-13 14:55:10 -04:00
gcp_compute_forwarding_rule Bug fixes for gcp_compute_forwarding_rule (#42808) 2018-08-13 12:00:11 -04:00
gcp_compute_global_address Bug fixes for gcp_compute_global_address (#42809) 2018-08-13 12:02:10 -04:00
gcp_compute_global_forwarding_rule Bug fixes for gcp_compute_global_forwarding_rule (#42810) 2018-08-13 15:28:11 -04:00
gcp_compute_health_check Bug fixes for gcp_compute_health_check (#42811) 2018-08-13 12:07:24 -04:00
gcp_compute_http_health_check Bug fixes for gcp_compute_http_health_check (#42812) 2018-08-15 13:52:00 -04:00
gcp_compute_https_health_check Bug fixes for gcp_compute_https_health_check (#42813) 2018-08-13 12:08:42 -04:00
gcp_compute_image Bug fixes for gcp_compute_image (#42814) 2018-08-13 12:08:12 -04:00
gcp_compute_instance Bug fixes for gcp_compute_instance (#42815) 2018-08-13 15:28:50 -04:00
gcp_compute_instance_group Bug fixes for gcp_compute_instance_group (#42816) 2018-08-13 15:29:27 -04:00
gcp_compute_instance_group_manager Bug fixes for gcp_compute_instance_group_manager (#42817) 2018-08-13 12:09:23 -04:00
gcp_compute_instance_template Bug fixes for gcp_compute_instance_template (#42818) 2018-08-13 15:29:48 -04:00
gcp_compute_network Bug fixes for gcp_compute_network (#42819) 2018-08-15 13:52:13 -04:00
gcp_compute_route Bug fixes for gcp_compute_route (#42820) 2018-08-15 14:28:49 -04:00
gcp_compute_ssl_certificate Bug fixes for gcp_compute_ssl_certificate (#42821) 2018-08-13 12:15:15 -04:00
gcp_compute_ssl_policy New GCP Module: gcp_compute_ssl_policy (#42797) 2018-08-22 13:00:15 -04:00
gcp_compute_subnetwork Bug fixes for gcp_compute_subnetwork (#42822) 2018-08-15 14:28:36 -04:00
gcp_compute_target_http_proxy Bug fixes for gcp_compute_target_http_proxy (#42823) 2018-08-14 09:53:29 -04:00
gcp_compute_target_https_proxy Bug fixes for gcp_compute_target_https_proxy (#42824) 2018-08-14 09:52:25 -04:00
gcp_compute_target_pool Bug fixes for gcp_compute_target_pool (#42825) 2018-08-14 09:52:40 -04:00
gcp_compute_target_ssl_proxy Bug fixes for gcp_compute_target_ssl_proxy (#42826) 2018-08-14 09:52:57 -04:00
gcp_compute_target_tcp_proxy Bug fixes for gcp_compute_target_tcp_proxy (#42827) 2018-08-14 09:53:46 -04:00
gcp_compute_target_vpn_gateway New GCP Module: gcp_compute_target_vpn_gateway (#42798) 2018-08-22 10:50:55 -04:00
gcp_compute_url_map Bug fixes for gcp_compute_url_map (#42828) 2018-08-15 14:28:24 -04:00
gcp_compute_vpn_tunnel New GCP Module: gcp_compute_vpn_tunnel (#44051) 2018-08-17 12:35:12 -04:00
gcp_container_cluster Bug fixes for gcp_container_cluster (#42829) 2018-08-13 12:15:02 -04:00
gcp_container_node_pool Bug fixes for gcp_container_node_pool (#42830) 2018-08-13 12:11:06 -04:00
gcp_dns_managed_zone Bug fixes for gcp_dns_managed_zone (#42831) 2018-08-13 12:09:38 -04:00
gcp_dns_resource_record_set
gcp_pubsub_subscription Bug fixes for gcp_pubsub_subscription (#42833) 2018-08-13 12:14:11 -04:00
gcp_pubsub_topic Bug fixes for gcp_pubsub_topic (#42834) 2018-08-15 14:28:08 -04:00
gcp_storage_bucket Bug fixes for gcp_storage_bucket (#42835) 2018-08-15 14:27:41 -04:00
gcp_storage_bucket_access_control Bug fixes for gcp_storage_bucket_access_control (#42836) 2018-08-13 12:13:53 -04:00
gem Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
get_url Implement part of #27617 [expend checksum format to <algorithm>:(<checksum>|<url>)] (#43751) 2018-08-24 12:45:32 -04:00
getent Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
git Support --separate-git-dir option in Git module (#41712) 2018-08-17 10:43:04 -04:00
github_issue Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
group Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
group_by Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
groupby_filter Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
handlers Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
hash Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
hg Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
hosts_field Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
ignore_errors Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
ignore_unreachable New keyword: ignore_unreachable (#43857) 2018-08-23 11:41:02 -04:00
include_import Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
include_vars Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
includes Add new host_pinned strategy (#44586) 2018-08-23 20:16:32 -04:00
influxdb_user Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
ini_file Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
inventory_aws_ec2 Classify inventory plugins. (#44091) 2018-08-13 12:26:37 -07:00
inventory_aws_rds RDS inventory plugin (#41919) 2018-08-23 19:42:32 -04:00
inventory_foreman Classify inventory plugins. (#44091) 2018-08-13 12:26:37 -07:00
inventory_path_with_comma Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
inventory_plugin_config Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
inventory_vmware_vm_inventory Classify inventory plugins. (#44091) 2018-08-13 12:26:37 -07:00
ios_banner
ios_command Remove unnecessary features from cli_command (#43829) 2018-08-09 12:46:38 -04:00
ios_config Add cli_config module (#42413) 2018-08-14 13:52:15 +05:30
ios_facts ios_facts: Report space of file systems (#41850) 2018-07-09 09:15:31 -04:00
ios_file ios_file: Don't leave leftover files behind (#42622) 2018-07-12 12:26:14 +05:30
ios_interface Fix ios integration test failures in CI (#39729) 2018-05-04 16:18:04 +05:30
ios_l2_interface
ios_l3_interface Fix ios test pt. 2 (#40628) 2018-05-23 18:33:36 -04:00
ios_linkagg
ios_lldp
ios_logging Fixes to ios_logging (#41029) 2018-06-04 07:32:23 -04:00
ios_ping
ios_smoke Update timeout test to match current returned string (#44191) 2018-08-15 14:04:32 -04:00
ios_static_route
ios_system Replace bogus (but routeable) ip addresses with RFC 5737 example addresses (#40554) 2018-05-30 13:03:20 -04:00
ios_user Fix ios_user auth test ssh key usage (#44170) 2018-08-15 11:34:36 -04:00
ios_vlan This test is expected to fail (#40612) 2018-05-23 10:45:50 -04:00
iosxr_banner Fix iosxr copy and delete tasks (#44083) 2018-08-13 14:20:28 -04:00
iosxr_command Fix iosxr copy and delete tasks (#44083) 2018-08-13 14:20:28 -04:00
iosxr_config Add cli_config module (#42413) 2018-08-14 13:52:15 +05:30
iosxr_facts Fix iosxr copy and delete tasks (#44083) 2018-08-13 14:20:28 -04:00
iosxr_interface Fix iosxr copy and delete tasks (#44083) 2018-08-13 14:20:28 -04:00
iosxr_logging Fix iosxr copy and delete tasks (#44083) 2018-08-13 14:20:28 -04:00
iosxr_netconf Fix iosxr copy and delete tasks (#44083) 2018-08-13 14:20:28 -04:00
iosxr_smoke Fix iosxr copy and delete tasks (#44083) 2018-08-13 14:20:28 -04:00
iosxr_system iosxr_system always syntax error (#43977) 2018-08-10 12:55:25 -07:00
iosxr_user Fix iosxr copy and delete tasks (#44083) 2018-08-13 14:20:28 -04:00
ipify_facts Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
iso_extract Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
iterators Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
java_cert
jinja2_native_types Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
junos_banner
junos_command Fix junos cli_command integration test (#44558) 2018-08-23 14:48:44 +05:30
junos_config Add cli_config module (#42413) 2018-08-14 13:52:15 +05:30
junos_facts Fix junos facts integration test failures (#42623) 2018-07-12 09:53:03 +05:30
junos_interface
junos_l2_interface
junos_l3_interface Replace bogus (but routeable) ip addresses with RFC 5737 example addresses (#40554) 2018-05-30 13:03:20 -04:00
junos_linkagg
junos_lldp
junos_lldp_interface
junos_logging
junos_netconf
junos_rpc
junos_smoke Remove unnecessary features from cli_command (#43829) 2018-08-09 12:46:38 -04:00
junos_static_route
junos_system
junos_user
junos_vlan
junos_vrf Replace bogus (but routeable) ip addresses with RFC 5737 example addresses (#40554) 2018-05-30 13:03:20 -04:00
k8s Revert "Disabled failing k8s integration test." 2018-08-17 13:26:45 -07:00
known_hosts Fixed hash_host option in known_hosts module. Fixes #44284 2018-08-21 10:28:45 -07:00
lambda_policy Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
lineinfile Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
locale_gen Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
lookup_passwordstore Ignore CentOS 6.10 for passwordstore test. 2018-08-23 15:39:57 -07:00
lookup_paths Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
lookup_properties Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
lookups Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
loops Add basedir to ansible_search_path before running loops. Fixes #43302 (#43431) 2018-07-31 11:51:32 -04:00
memset_dns_reload New Memset module to request DNS reloads (#40390) 2018-05-25 00:30:25 +02:00
memset_zone Memset: initial module, integration tests, module_utils and supporting documentation. (#40071) 2018-05-18 10:45:38 +01:00
memset_zone_domain New Memset module to manage DNS zone domains (#40391) 2018-05-25 00:29:43 +02:00
memset_zone_record New Memset module to manage DNS zone records (#40392) 2018-05-23 18:36:57 +02:00
meraki_admin/tasks Meraki - Integration tests now clean up on failure (#42227) 2018-07-03 10:42:04 +02:00
meraki_config_template Add net_id support to config_template (#42446) 2018-07-09 11:11:16 +02:00
meraki_device Cange URL for organization device lookup (#42648) 2018-07-12 16:41:16 +02:00
meraki_mr_l3_firewall New module - meraki_mr_l3_firewall (#42328) 2018-07-09 11:17:14 +02:00
meraki_mx_l3_firewall meraki_mx_l3_firewall - Fix idempotency for default rule logging (#42649) 2018-07-12 16:47:17 +02:00
meraki_network meraki_network - Add support for disableMyMerakiCom (#42418) 2018-07-09 11:21:34 +02:00
meraki_organization Meraki utility now loads() JSON (#40856) 2018-06-06 18:24:14 +02:00
meraki_snmp Improved support for parameter testing and checks for org_id (#41517) 2018-06-20 09:40:10 +02:00
meraki_ssid New module - meraki_ssid (#42329) 2018-07-09 11:18:12 +02:00
meraki_switchport New module - meraki_switchport (#41634) 2018-06-20 09:48:30 +02:00
meraki_vlan meraki - Enabled support for configuration template configuration (#42392) 2018-07-09 11:10:27 +02:00
module_defaults Extend module_defaults by adding default groups for cloud modules (#44127) 2018-08-22 21:33:27 -04:00
module_precedence Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
module_utils Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
mount Fix for creation and removal of swap record in fstab (fixes #42706, #31437 and #30090) (#42837) 2018-07-31 17:09:38 -04:00
mysql_db Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
mysql_user Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
mysql_variables Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
netapp_eseries_host Resolve issues in NetApp E-Series Host module (#39748) 2018-08-24 15:44:59 +01:00
netconf_config Update netconf_config module (#44379) 2018-08-21 20:41:18 +05:30
netconf_get Add NETCONF support for SROS devices (#40330) 2018-05-24 15:44:39 +05:30
netconf_rpc New ansible module netconf_rpc (#40358) 2018-05-24 15:25:02 +05:30
nios_a_record Nios integration and unit tests for all remaining nios new modules (#43399) 2018-08-01 08:54:01 +05:30
nios_aaaa_record Nios integration and unit tests for all remaining nios new modules (#43399) 2018-08-01 08:54:01 +05:30
nios_cname_record Nios integration and unit tests for all remaining nios new modules (#43399) 2018-08-01 08:54:01 +05:30
nios_dns_view Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
nios_host_record Allow DNS bypass for add/remove of host records with nios_host_record (#42934) 2018-08-01 10:33:58 +05:30
nios_mx_record Nios integration and unit tests for all remaining nios new modules (#43399) 2018-08-01 08:54:01 +05:30
nios_naptr_record Nios integration and unit tests for all remaining nios new modules (#43399) 2018-08-01 08:54:01 +05:30
nios_network Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
nios_network_view Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
nios_ptr_record Nios integration and unit tests for all remaining nios new modules (#43399) 2018-08-01 08:54:01 +05:30
nios_srv_record Nios integration and unit tests for all remaining nios new modules (#43399) 2018-08-01 08:54:01 +05:30
nios_txt_record Added nios_txt_record module (#39264) 2018-08-26 12:25:16 +00:00
nios_zone Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
no_log fix tempating issues with no_log and loops (#44468) 2018-08-21 21:53:56 -04:00
npm Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
nuage_vspk Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
nxos_aaa_server Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_aaa_server_host Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_acl Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_acl_interface Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_banner Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_become Nxos test reorganize (#41089) 2018-06-05 07:37:24 -04:00
nxos_bgp Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_bgp_af Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_bgp_neighbor Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_bgp_neighbor_af Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_command Remove unnecessary features from cli_command (#43829) 2018-08-09 12:46:38 -04:00
nxos_config Add cli_config module (#42413) 2018-08-14 13:52:15 +05:30
nxos_evpn_global Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_evpn_vni Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_facts Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_feature Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_file_copy ignore file_pull (#44614) 2018-08-24 10:51:57 +05:30
nxos_gir fix nxos_gir issues (#41809) 2018-06-28 10:11:45 +05:30
nxos_gir_profile_management Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_hsrp Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_igmp Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_igmp_interface Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_igmp_snooping Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_install_os Nxos test reorganize (#41089) 2018-06-05 07:37:24 -04:00
nxos_interface Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_interface_ospf Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_ip_interface Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_l2_interface Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_l3_interface Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_linkagg Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_lldp Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_logging Fix invalid task attrs. ci_complete 2018-08-17 10:22:31 -07:00
nxos_ntp Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_ntp_auth Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_ntp_options Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_nxapi Nxapi ssl (#42905) 2018-07-27 22:10:39 +05:30
nxos_nxapi_transports NXOS NXAPI TLS & Cipher (#43651) 2018-08-14 09:20:37 +05:30
nxos_ospf Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_ospf_vrf Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_overlay_global Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_pim Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_pim_interface Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_pim_rp_address Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_portchannel nxos CI failures bugfix (#42240) 2018-07-03 19:45:19 +05:30
nxos_rollback Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_rpm Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_smoke Remove unnecessary features from cli_command (#43829) 2018-08-09 12:46:38 -04:00
nxos_snapshot Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_snmp_community Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_snmp_contact Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_snmp_host Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_snmp_location Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_snmp_traps Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_snmp_user Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_static_route Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_switchport Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_system Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_udld Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_udld_interface Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_user Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_vlan Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_vpc Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_vpc_interface Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_vrf Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_vrf_af Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_vrf_interface Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_vrrp Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_vtp_domain Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_vtp_password Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_vtp_version Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_vxlan_vtep Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
nxos_vxlan_vtep_vni Nxos restore provider to nxapi tests (#41818) 2018-07-02 09:43:51 -04:00
one_host one_host environment variables, Fixes #44163 (#44568) 2018-08-27 10:55:04 -04:00
openssl_certificate Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
openssl_csr Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
openssl_dhparam Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
openssl_pkcs12 crypto: Add new module openssl_pkcs12 (#27320) 2018-08-23 08:15:22 -07:00
openssl_privatekey Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
openssl_publickey Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
openvswitch_bridge
openvswitch_db openvswitch_db : Handle column value conversion and idempotency in no_key case (#43869) 2018-08-10 10:31:03 +05:30
package Ensure that apt is always chosen on debian/ubuntu (#44413) 2018-08-20 15:59:56 -04:00
package_facts Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
parsing Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
patch Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
pause Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
ping Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
pip Allow version specifiers for pip install (#41792) 2018-08-17 11:46:53 -04:00
plugin_filtering Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
plugin_loader Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
postgresql fixed test using removed feature 2018-08-01 15:17:28 -04:00
prepare_eos_tests/tasks
prepare_http_tests Overhaul httptester support in ansible-test. (#39892) 2018-05-09 09:24:40 -07:00
prepare_ios_tests
prepare_iosxr_tests
prepare_junos_tests/tasks Tag prepare tasks as netconf so they can be skipped for cli-only tests (#44119) 2018-08-14 08:43:21 -04:00
prepare_nios_tests/tasks Add a cloud provider and a set of smoketests for the NIOS modules (#40573) 2018-05-25 13:50:45 +01:00
prepare_nuage_tests/tasks Restore nuage_vspk integration tests. 2018-05-07 11:15:36 -07:00
prepare_nxos_tests/tasks nxos_facts test lldp feature and fix nxapi check_rc (#44104) 2018-08-14 10:14:13 +05:30
prepare_ovs_tests/tasks run ovs tests on centos/rhel (#42556) 2018-07-10 19:25:09 +05:30
prepare_sros_tests/tasks Add NETCONF support for SROS devices (#40330) 2018-05-24 15:44:39 +05:30
prepare_tests/tasks
prepare_win_tests
psexec Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
pull Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
python_requirements_facts New module: Python Requirements Facts (#43108) 2018-08-21 09:19:10 +10:00
rabbitmq_plugin Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
rabbitmq_user Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
rabbitmq_vhost Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
raw Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
rds_param_group Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
reboot Add reboot action plugin (#35205) 2018-08-23 18:12:12 -07:00
remote_tmp Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
route53_zone Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
rpm_key Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
s3_bucket Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
s3_lifecycle Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
script Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
seboolean Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
sefcontext Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
selinux Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
sensu_client Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
sensu_handler Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
service improve 'service' integration tests (#43655) 2018-08-07 21:48:03 -07:00
service_facts Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
set_fact Don't perform string to bool conversion in set_fact when jinja2 native types is enabled (#43425) 2018-07-30 15:44:38 -05:00
setup_acme/tasks ACME: new helper module for ACME challenges which need TLS certs (#43756) 2018-08-22 23:12:43 +02:00
setup_azure
setup_deb_repo
setup_docker Docker integration tests: factorize setup (#42306) 2018-08-09 10:37:03 -07:00
setup_ec2
setup_influxdb/tasks
setup_mysql_db
setup_opennebula/vars opennebula: new module one_host (#40041) 2018-05-17 10:10:49 +02:00
setup_openssl
setup_postgresql_db
setup_rabbitmq/tasks Fix rabbitmq_* integration tests (#41836) 2018-06-25 21:29:45 +02:00
setup_rpm_repo make sure to get correct python version for rpmfluff in setup_rpm_repo (#43228) 2018-07-24 17:17:51 -05:00
setup_sshkey/tasks
setup_zabbix Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
shadowed_module Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
slurp Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
sns_topic sns_topic boto3 port (#39292) 2018-08-23 21:04:18 -04:00
special_vars Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
sqs_queue Fix invalid task attrs. ci_complete 2018-08-17 10:22:31 -07:00
stat Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
strategy_linear Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
sts_assume_role Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
subversion Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
supervisorctl Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
synchronize Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
synchronize-buildah
sysctl Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
systemd Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
tags Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
task_ordering Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
template Allow specifying the output encoding in the template module (#42171) 2018-07-25 13:10:40 -07:00
template_jinja2_latest
templating_settings Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
test_infra Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
timezone Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
tower_credential Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
tower_group Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
tower_host Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
tower_inventory Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
tower_inventory_source Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
tower_job_cancel Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
tower_job_launch Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
tower_job_list Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
tower_job_template Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
tower_job_wait Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
tower_label Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
tower_organization Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
tower_project Properly detect credentials for tower_project 2018-08-02 11:17:04 -04:00
tower_role Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
tower_team Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
tower_user Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
ucs_ip_pool
ucs_lan_connectivity
ucs_mac_pool
ucs_ntp_server UCS NTP Server module (#42375) 2018-07-19 11:32:26 +02:00
ucs_san_connectivity
ucs_storage_profile ucs_storage_profile module and integration tests (#42205) 2018-07-19 11:30:38 +02:00
ucs_timezone Module for UCSM Manager Timezone Management (#36974) 2018-06-29 15:43:52 +02:00
ucs_uuid_pool UCS Server UUID pool modules and integration tests (#41743) 2018-06-29 15:49:47 +02:00
ucs_vhba_template
ucs_vlans
ucs_vnic_template Fix issue with vNIC redundancy templates (#36608) 2018-06-29 15:48:48 +02:00
ucs_vsans
ucs_wwn_pool
unarchive Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
unicode Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
until Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
uri Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
user Properly un expire account on creation (#44174) 2018-08-23 12:29:33 -04:00
var_blending Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
var_precedence Surround top-level function and class definitions with two blank lines. 2018-07-31 12:06:56 -07:00
vars_prompt Share the implementation of hashing for both vars_prompt and password_hash (#21215) 2018-08-27 08:40:41 -07:00
vault Mass nuke deprecated items that are easily removed. ci_complete (#44320) 2018-08-20 16:26:10 -05:00
vcenter_folder VMware: check if folder already exists before creation (#41588) 2018-07-30 11:11:42 +05:30
vcenter_license Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
vmware_about_facts VMware: new module : vmware_about_facts (#43146) 2018-07-29 14:51:14 +05:30
vmware_cluster Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
vmware_cluster_facts Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
vmware_datacenter Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
vmware_datastore_cluster Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
vmware_datastore_facts Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
vmware_datastore_maintenancemode Remove CI group from unsupported tests. 2018-05-09 07:29:31 -07:00
vmware_drs_rule_facts Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
vmware_dvs_portgroup Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
vmware_dvswitch Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
vmware_guest VMware: add support for boot option firmware (#42730) 2018-07-27 09:18:04 +05:30
vmware_guest_boot_facts VMware: new module : vmware_guest_boot_facts (#43240) 2018-08-07 22:08:37 +05:30
vmware_guest_custom_attribute_defs VMware: new module: vmware_guest_attribute_defs (#38144) 2018-07-27 13:27:14 +05:30
vmware_guest_custom_attributes VMware: new module : vmware_guest_custom_attributes (#38114) 2018-07-27 13:33:43 +05:30
vmware_guest_disk_facts Remove CI group from unsupported tests. 2018-05-09 07:29:31 -07:00
vmware_guest_facts Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
vmware_guest_find Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
vmware_guest_move VMware Module - vmware_guest_move (#42149) 2018-07-27 20:21:45 +05:30
vmware_guest_powerstate Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
vmware_guest_snapshot Remove CI group from unsupported tests. 2018-05-09 07:29:31 -07:00
vmware_guest_snapshot_facts Remove CI group from unsupported tests. 2018-05-09 07:29:31 -07:00
vmware_guest_tools_wait Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
vmware_host Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
vmware_host_acceptance Remove CI group from unsupported tests. 2018-05-09 07:29:31 -07:00
vmware_host_capability_facts Remove CI group from unsupported tests. 2018-05-09 07:29:31 -07:00
vmware_host_config_facts Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
vmware_host_config_manager Remove CI group from unsupported tests. 2018-05-09 07:29:31 -07:00
vmware_host_dns_facts Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
vmware_host_facts VMware: additional VSAN facts about Hostsystem (#40456) 2018-07-27 11:18:42 +05:30
vmware_host_firewall_facts Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
vmware_host_firewall_manager Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
vmware_host_ntp Remove CI group from unsupported tests. 2018-05-09 07:29:31 -07:00
vmware_host_package_facts Remove CI group from unsupported tests. 2018-05-09 07:29:31 -07:00
vmware_host_powerstate VMware: new module: vmware_host_powerstate (#36577) 2018-05-12 21:09:53 +05:30
vmware_host_service_facts Remove CI group from unsupported tests. 2018-05-09 07:29:31 -07:00
vmware_host_service_manager Remove CI group from unsupported tests. 2018-05-09 07:29:31 -07:00
vmware_host_ssl_facts VMware: New module : vmware_host_ssl_facts (#43871) 2018-08-17 10:25:25 +05:30
vmware_host_vmnic_facts Remove CI group from unsupported tests. 2018-05-09 07:29:31 -07:00
vmware_local_role_facts VMware: new module: vmware_local_role_facts (#44553) 2018-08-24 10:00:40 +05:30
vmware_local_role_manager Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
vmware_local_user_facts Remove CI group from unsupported tests. 2018-05-09 07:29:31 -07:00
vmware_local_user_manager Remove CI group from unsupported tests. 2018-05-09 07:29:31 -07:00
vmware_maintenancemode Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
vmware_portgroup_facts Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
vmware_resource_pool Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
vmware_resource_pool_facts Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
vmware_target_canonical_facts Remove CI group from unsupported tests. 2018-05-09 07:29:31 -07:00
vmware_vm_facts VMware: Add cluster fact in vmware_vm_facts (#44292) 2018-08-18 18:51:37 +05:30
vmware_vm_vm_drs_rule Remove CI group from unsupported tests. 2018-05-09 07:29:31 -07:00
vmware_vmkernel_facts Remove CI group from unsupported tests. 2018-05-09 07:29:31 -07:00
vmware_vswitch Remove CI group from unsupported tests. 2018-05-09 07:29:31 -07:00
vmware_vswitch_facts Remove CI group from unsupported tests. 2018-05-09 07:29:31 -07:00
vyos_banner Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
vyos_command Update timeout test to match current returned string (#44191) 2018-08-15 14:04:32 -04:00
vyos_config Add cli_config module (#42413) 2018-08-14 13:52:15 +05:30
vyos_facts Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
vyos_interface vyos_interface require multiple network nodes to run (#39670) 2018-05-03 18:50:18 +01:00
vyos_l3_interface
vyos_linkagg
vyos_lldp Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
vyos_lldp_interface
vyos_logging
vyos_smoke Remove unnecessary features from cli_command (#43829) 2018-08-09 12:46:38 -04:00
vyos_static_route Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
vyos_system Replace bogus (but routeable) ip addresses with RFC 5737 example addresses (#40554) 2018-05-30 13:03:20 -04:00
vyos_user
vyos_vlan Fix vyos_vlan aggregate issue & added tests (#41638) 2018-06-19 18:50:28 +05:30
wait_for Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
wait_for_connection Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
wakeonlan Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_acl Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_acl_inheritance Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_async_wrapper Added an async 'started' test (like 'finished') (#43445) 2018-08-24 01:29:34 +02:00
win_audit_policy_system Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_audit_rule Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_become Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_certificate_store Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_chocolatey win_chocolatey: fix regression around using all as a package name (#43483) 2018-08-06 07:33:55 +10:00
win_chocolatey_config Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_chocolatey_feature Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_chocolatey_source Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_command Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_copy Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_disk_facts Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_domain_group
win_domain_membership Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_dotnet_ngen Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_dsc Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_environment Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_eventlog Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_eventlog_entry Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_exec_wrapper Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_feature Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_fetch Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_file Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_find Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_firewall Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_firewall_rule Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_get_url Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_group Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_group_membership Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_hostname Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_hotfix Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_iis_webapppool Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_iis_webbinding Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_lineinfile Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_mapped_drive Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_module_utils Add Ansible.ModuleUtils.PrivilegeUtil and converted code to use it (#43179) 2018-07-30 14:48:54 -07:00
win_module_utils_legacy Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_msg Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_msi Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_owner Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_package Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_pagefile Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_path Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_pester Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_ping Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_power_plan Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_product_facts Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_psexec Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_psmodule Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_rabbitmq_plugin Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_raw Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_reboot Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_reg_stat Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_regedit Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_region Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_regmerge Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_route Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_say Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_scheduled_task Removed deprecated Windows items slated for removed in 2.7 (#43231) 2018-07-25 12:02:49 +10:00
win_scheduled_task_stat Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_script Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_security_policy Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_service Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_setup Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_share Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_shell Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_shortcut Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_slurp Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_stat Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_tempfile Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_template Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_timezone Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_toast Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_unzip Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_updates Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_uri Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_user Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_user_right Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_wait_for Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_wakeonlan Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
win_whoami Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
windows-paths Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
xattr Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
xml Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
yarn Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
yum Fix download URL for yum integration test. 2018-08-09 13:06:43 -07:00
yum_repository Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
zabbix_host Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
zypper Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00
zypper_repository Update Shippable integration test groups. (#43118) 2018-07-23 20:46:22 -07:00