├── .ansible-lint ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── dependabot.yml └── workflows │ ├── codeql-analysis.yml │ ├── docs.yml │ ├── main.yml │ └── release.yml ├── .gitignore ├── .mailmap ├── .packit.yaml ├── .yamllint ├── CHANGELOG.rst ├── LICENSE ├── Makefile ├── PSF-license.txt ├── README.md ├── ansible.cfg ├── bindep.txt ├── changelogs ├── changelog.yaml ├── config.yaml └── fragments │ ├── .gitkeep │ └── job_invocation-feature.yml ├── docs ├── CHANGELOG.rst ├── Makefile ├── README.md ├── _gh_include │ ├── footer.inc │ └── header.inc ├── api.rst ├── conf.py ├── cvmanager.md ├── developing.md ├── index.rst ├── releasing.md ├── requirements.txt ├── roles.rst.template └── testing.md ├── galaxy.yml ├── generate_action_groups.py ├── meta ├── bindep.txt ├── execution-environment.yml ├── requirements.txt └── runtime.yml ├── plugins ├── __init__.py ├── callback │ └── foreman.py ├── doc_fragments │ └── foreman.py ├── filter │ ├── cp_label.yml │ └── foreman.py ├── inventory │ └── foreman.py ├── module_utils │ ├── __init__.py │ ├── _apypie.py │ ├── _version.py │ └── foreman_helper.py └── modules │ ├── __init__.py │ ├── activation_key.py │ ├── architecture.py │ ├── auth_source_ldap.py │ ├── bookmark.py │ ├── compute_attribute.py │ ├── compute_profile.py │ ├── compute_resource.py │ ├── config_group.py │ ├── content_credential.py │ ├── content_export_info.py │ ├── content_export_library.py │ ├── content_export_repository.py │ ├── content_export_version.py │ ├── content_import_info.py │ ├── content_import_library.py │ ├── content_import_repository.py │ ├── content_import_version.py │ ├── content_upload.py │ ├── content_view.py │ ├── content_view_filter.py │ ├── content_view_filter_info.py │ ├── content_view_filter_rule.py │ ├── content_view_filter_rule_info.py │ ├── content_view_history_info.py │ ├── content_view_info.py │ ├── content_view_version.py │ ├── content_view_version_info.py │ ├── discovery_rule.py │ ├── domain.py │ ├── domain_info.py │ ├── external_usergroup.py │ ├── flatpak_remote.py │ ├── flatpak_remote_repository_mirror.py │ ├── flatpak_remote_scan.py │ ├── global_parameter.py │ ├── hardware_model.py │ ├── host.py │ ├── host_collection.py │ ├── host_errata_info.py │ ├── host_info.py │ ├── host_power.py │ ├── hostgroup.py │ ├── hostgroup_info.py │ ├── http_proxy.py │ ├── image.py │ ├── installation_medium.py │ ├── job_invocation.py │ ├── job_template.py │ ├── lifecycle_environment.py │ ├── location.py │ ├── operatingsystem.py │ ├── organization.py │ ├── organization_info.py │ ├── os_default_template.py │ ├── partition_table.py │ ├── product.py │ ├── provisioning_template.py │ ├── puppet_environment.py │ ├── puppetclasses_import.py │ ├── realm.py │ ├── redhat_manifest.py │ ├── registration_command.py │ ├── repository.py │ ├── repository_info.py │ ├── repository_set.py │ ├── repository_set_info.py │ ├── repository_sync.py │ ├── resource_info.py │ ├── role.py │ ├── scap_content.py │ ├── scap_tailoring_file.py │ ├── scc_account.py │ ├── scc_product.py │ ├── setting.py │ ├── setting_info.py │ ├── smart_class_parameter.py │ ├── smart_class_parameter_override_value.py │ ├── smart_proxy.py │ ├── snapshot.py │ ├── snapshot_info.py │ ├── status_info.py │ ├── subnet.py │ ├── subnet_info.py │ ├── subscription_info.py │ ├── subscription_manifest.py │ ├── sync_plan.py │ ├── templates_import.py │ ├── user.py │ ├── usergroup.py │ ├── wait_for_task.py │ └── webhook.py ├── pytest.ini ├── requirements-dev.txt ├── requirements-lint.txt ├── requirements.txt ├── roles ├── activation_keys │ ├── README.md │ ├── meta │ │ └── main.yml │ └── tasks │ │ └── main.yml ├── auth_sources_ldap │ ├── README.md │ ├── meta │ │ └── main.yml │ └── tasks │ │ └── main.yml ├── compute_profiles │ ├── README.md │ ├── meta │ │ └── main.yml │ └── tasks │ │ └── main.yml ├── compute_resources │ ├── README.md │ ├── meta │ │ └── main.yml │ └── tasks │ │ └── main.yml ├── content_credentials │ ├── README.md │ ├── meta │ │ └── main.yml │ └── tasks │ │ └── main.yml ├── content_rhel │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── meta │ │ └── main.yml │ └── tasks │ │ └── main.yml ├── content_view_publish │ ├── README.md │ ├── meta │ │ └── main.yml │ └── tasks │ │ └── main.yml ├── content_view_version_cleanup │ ├── README.md │ ├── meta │ │ └── main.yml │ └── tasks │ │ ├── delete_cv_versions.yml │ │ ├── find_and_delete_unused_cv_versions.yml │ │ └── main.yml ├── content_views │ ├── README.md │ ├── meta │ │ └── main.yml │ └── tasks │ │ ├── _create_content_view.yml │ │ └── main.yml ├── convert2rhel │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── meta │ │ └── main.yml │ └── tasks │ │ ├── activation_keys.yml │ │ ├── content_views.yml │ │ ├── host_groups.yml │ │ ├── main.yml │ │ ├── products_and_repos.yml │ │ └── sync.yml ├── domains │ ├── README.md │ ├── meta │ │ └── main.yml │ └── tasks │ │ └── main.yml ├── hostgroups │ ├── README.md │ ├── meta │ │ └── main.yml │ └── tasks │ │ └── main.yml ├── lifecycle_environments │ ├── README.md │ ├── meta │ │ └── main.yml │ └── tasks │ │ └── main.yml ├── locations │ ├── README.md │ ├── meta │ │ └── main.yml │ └── tasks │ │ └── main.yml ├── manifest │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── meta │ │ └── main.yml │ └── tasks │ │ └── main.yml ├── operatingsystems │ ├── README.md │ ├── meta │ │ └── main.yml │ └── tasks │ │ └── main.yml ├── organizations │ ├── README.md │ ├── meta │ │ └── main.yml │ └── tasks │ │ └── main.yml ├── provisioning_templates │ ├── README.md │ ├── meta │ │ └── main.yml │ └── tasks │ │ └── main.yml ├── repositories │ ├── README.md │ ├── meta │ │ └── main.yml │ └── tasks │ │ └── main.yml ├── settings │ ├── README.md │ ├── meta │ │ └── main.yml │ └── tasks │ │ └── main.yml ├── subnets │ ├── README.md │ ├── meta │ │ └── main.yml │ └── tasks │ │ └── main.yml └── sync_plans │ ├── README.md │ ├── meta │ └── main.yml │ └── tasks │ └── main.yml ├── tests ├── __init__.py ├── callback │ ├── three_hosts │ ├── three_hosts.yml │ └── vault-pass ├── config.yml ├── conftest.py ├── fixtures │ ├── apidoc │ │ ├── activation_key.json │ │ ├── activation_keys_role.json │ │ ├── architecture.json │ │ ├── auth_source_ldap.json │ │ ├── auth_sources_ldap_role.json │ │ ├── bookmark.json │ │ ├── compute_attribute.json │ │ ├── compute_profile.json │ │ ├── compute_profile_ovirt.json │ │ ├── compute_profiles_role.json │ │ ├── compute_resource.json │ │ ├── compute_resources_role.json │ │ ├── config_group.json │ │ ├── content_credential.json │ │ ├── content_credentials_role.json │ │ ├── content_export_info.json │ │ ├── content_export_library.json │ │ ├── content_export_repository.json │ │ ├── content_export_version.json │ │ ├── content_import_info.json │ │ ├── content_import_library.json │ │ ├── content_import_repository.json │ │ ├── content_import_version.json │ │ ├── content_rhel_role.json │ │ ├── content_upload.json │ │ ├── content_upload_deb.json │ │ ├── content_upload_ostree.json │ │ ├── content_view.json │ │ ├── content_view_filter.json │ │ ├── content_view_filter_deb.json │ │ ├── content_view_filter_info.json │ │ ├── content_view_filter_info_deb.json │ │ ├── content_view_filter_rule.json │ │ ├── content_view_filter_rule_deb.json │ │ ├── content_view_filter_rule_info.json │ │ ├── content_view_filter_rule_info_deb.json │ │ ├── content_view_history_info.json │ │ ├── content_view_info.json │ │ ├── content_view_publish_role.json │ │ ├── content_view_version.json │ │ ├── content_view_version_cleanup_role.json │ │ ├── content_view_version_info.json │ │ ├── content_views_role.json │ │ ├── convert2rhel.json │ │ ├── discovery_rule.json │ │ ├── domain.json │ │ ├── domain_info.json │ │ ├── domains_role.json │ │ ├── external_usergroup.json │ │ ├── filters.json │ │ ├── flatpak_remote.json │ │ ├── flatpak_remote_repository_mirror.json │ │ ├── flatpak_remote_scan.json │ │ ├── foreman.json │ │ ├── global_parameter.json │ │ ├── hardware_model.json │ │ ├── host.json │ │ ├── host_collection.json │ │ ├── host_errata_info.json │ │ ├── host_info.json │ │ ├── host_interface_attributes.json │ │ ├── host_power.json │ │ ├── hostgroup.json │ │ ├── hostgroup_info.json │ │ ├── hostgroups_role.json │ │ ├── http_proxy.json │ │ ├── image.json │ │ ├── installation_medium.json │ │ ├── inventory_plugin.json │ │ ├── inventory_plugin_ansible.json │ │ ├── job_invocation.json │ │ ├── job_template.json │ │ ├── katello.json │ │ ├── katello_hostgroup.json │ │ ├── katello_smart_proxy.json │ │ ├── lifecycle_environment.json │ │ ├── lifecycle_environments_role.json │ │ ├── location.json │ │ ├── locations_role.json │ │ ├── luna.json │ │ ├── luna_hostgroup.json │ │ ├── manifest_role.json │ │ ├── module_defaults.json │ │ ├── operatingsystem.json │ │ ├── operatingsystems_role.json │ │ ├── organization.json │ │ ├── organization_info.json │ │ ├── organizations_role.json │ │ ├── os_default_template.json │ │ ├── partition_table.json │ │ ├── product.json │ │ ├── provisioning_template.json │ │ ├── provisioning_templates_role.json │ │ ├── puppet_environment.json │ │ ├── puppetclasses_import.json │ │ ├── realm.json │ │ ├── redhat_manifest.json │ │ ├── registration_command.json │ │ ├── repositories_role.json │ │ ├── repositories_role_deb.json │ │ ├── repository.json │ │ ├── repository_deb.json │ │ ├── repository_info.json │ │ ├── repository_ostree.json │ │ ├── repository_set.json │ │ ├── repository_set_info.json │ │ ├── repository_sync.json │ │ ├── resource_info.json │ │ ├── role.json │ │ ├── scap_content.json │ │ ├── scap_tailoring_file.json │ │ ├── scc_account.json │ │ ├── scc_manager.json │ │ ├── scc_product.json │ │ ├── scc_product_old.json │ │ ├── setting.json │ │ ├── setting_info.json │ │ ├── settings_role.json │ │ ├── smart_class_parameter.json │ │ ├── smart_class_parameter_override_value.json │ │ ├── smart_proxy.json │ │ ├── snapshot.json │ │ ├── snapshot_info.json │ │ ├── status_info.json │ │ ├── subnet.json │ │ ├── subnet_info.json │ │ ├── subnets_role.json │ │ ├── subscription_info.json │ │ ├── subscription_manifest.json │ │ ├── sync_plan.json │ │ ├── sync_plans_role.json │ │ ├── templates_import.json │ │ ├── user.json │ │ ├── usergroup.json │ │ ├── wait_for_task.json │ │ └── webhook.json │ └── callback │ │ └── dir_store │ │ ├── foreman │ │ ├── testhost-facts.json │ │ ├── testhost-report.json │ │ ├── testhostA-report.json │ │ └── testhostB-report.json │ │ └── proxy │ │ ├── testhost-report.json │ │ ├── testhostA-report.json │ │ └── testhostB-report.json ├── galaxy-importer.cfg ├── inventory │ ├── hosts │ ├── inventory_plugin.foreman.yml │ └── inventory_plugin_ansible.foreman.yml ├── test_callback.py ├── test_crud.py ├── test_foreman_spec_helper.py ├── test_module_state.py ├── test_playbooks │ ├── activation_key.yml │ ├── activation_keys_role.yml │ ├── architecture.yml │ ├── auth_source_ldap.yml │ ├── auth_sources_ldap_role.yml │ ├── bookmark.yml │ ├── compute_attribute.yml │ ├── compute_profile.yml │ ├── compute_profile_ovirt.yml │ ├── compute_profiles_role.yml │ ├── compute_resource.yml │ ├── compute_resources_role.yml │ ├── config_group.yml │ ├── content_credential.yml │ ├── content_credentials_role.yml │ ├── content_export_info.yml │ ├── content_export_library.yml │ ├── content_export_repository.yml │ ├── content_export_version.yml │ ├── content_import_info.yml │ ├── content_import_library.yml │ ├── content_import_repository.yml │ ├── content_import_version.yml │ ├── content_rhel_role.yml │ ├── content_upload.yml │ ├── content_upload_deb.yml │ ├── content_upload_ostree.yml │ ├── content_view.yml │ ├── content_view_filter.yml │ ├── content_view_filter_deb.yml │ ├── content_view_filter_info.yml │ ├── content_view_filter_info_deb.yml │ ├── content_view_filter_rule.yml │ ├── content_view_filter_rule_deb.yml │ ├── content_view_filter_rule_info.yml │ ├── content_view_filter_rule_info_deb.yml │ ├── content_view_history_info.yml │ ├── content_view_info.yml │ ├── content_view_publish_role.yml │ ├── content_view_version.yml │ ├── content_view_version_cleanup_role.yml │ ├── content_view_version_info.yml │ ├── content_views_role.yml │ ├── convert2rhel.yml │ ├── data │ │ ├── RPM-GPG-KEY-foreman │ │ ├── ansible_hello.erb │ │ ├── bear-4.1-1.noarch.rpm │ │ ├── content-import.tgz │ │ ├── delete_file.erb │ │ ├── file_repo_test.txt │ │ ├── fixtures_small_repo.tar │ │ ├── gpg_key.asc │ │ ├── gpg_key2.asc │ │ ├── large_file_repo.iso │ │ ├── manifest_foreman-ansible-modules.zip │ │ ├── metadata │ │ │ ├── metadata-library.json │ │ │ ├── metadata-repository.json │ │ │ └── metadata-version.json │ │ ├── odin_1.0_ppc64.deb │ │ ├── ssg-firefox-ds-tailoring.xml │ │ ├── ssg-firefox-ds.xml │ │ └── test-srpm01-1.0-1.src.rpm │ ├── discovery_rule.yml │ ├── domain.yml │ ├── domain_info.yml │ ├── domains_role.yml │ ├── external_usergroup.yml │ ├── filters.yml │ ├── fixtures │ │ ├── activation_key-0.yml │ │ ├── activation_key-1.yml │ │ ├── activation_key-10.yml │ │ ├── activation_key-11.yml │ │ ├── activation_key-12.yml │ │ ├── activation_key-13.yml │ │ ├── activation_key-14.yml │ │ ├── activation_key-15.yml │ │ ├── activation_key-16.yml │ │ ├── activation_key-17.yml │ │ ├── activation_key-18.yml │ │ ├── activation_key-19.yml │ │ ├── activation_key-2.yml │ │ ├── activation_key-20.yml │ │ ├── activation_key-21.yml │ │ ├── activation_key-22.yml │ │ ├── activation_key-23.yml │ │ ├── activation_key-24.yml │ │ ├── activation_key-25.yml │ │ ├── activation_key-26.yml │ │ ├── activation_key-27.yml │ │ ├── activation_key-28.yml │ │ ├── activation_key-29.yml │ │ ├── activation_key-3.yml │ │ ├── activation_key-30.yml │ │ ├── activation_key-31.yml │ │ ├── activation_key-32.yml │ │ ├── activation_key-4.yml │ │ ├── activation_key-5.yml │ │ ├── activation_key-6.yml │ │ ├── activation_key-7.yml │ │ ├── activation_key-8.yml │ │ ├── activation_key-9.yml │ │ ├── activation_keys_role-0.yml │ │ ├── activation_keys_role-1.yml │ │ ├── architecture-0.yml │ │ ├── architecture-1.yml │ │ ├── architecture-10.yml │ │ ├── architecture-11.yml │ │ ├── architecture-2.yml │ │ ├── architecture-3.yml │ │ ├── architecture-4.yml │ │ ├── architecture-5.yml │ │ ├── architecture-6.yml │ │ ├── architecture-7.yml │ │ ├── architecture-8.yml │ │ ├── architecture-9.yml │ │ ├── auth_source_ldap-0.yml │ │ ├── auth_source_ldap-1.yml │ │ ├── auth_source_ldap-2.yml │ │ ├── auth_source_ldap-3.yml │ │ ├── auth_source_ldap-4.yml │ │ ├── auth_source_ldap-5.yml │ │ ├── auth_source_ldap-6.yml │ │ ├── auth_sources_ldap_role-0.yml │ │ ├── bookmark-0.yml │ │ ├── bookmark-1.yml │ │ ├── bookmark-2.yml │ │ ├── bookmark-3.yml │ │ ├── bookmark-4.yml │ │ ├── bookmark-5.yml │ │ ├── bookmark-6.yml │ │ ├── compute_attribute-0.yml │ │ ├── compute_attribute-1.yml │ │ ├── compute_attribute-2.yml │ │ ├── compute_attribute-3.yml │ │ ├── compute_profile-0.yml │ │ ├── compute_profile-1.yml │ │ ├── compute_profile-2.yml │ │ ├── compute_profile-3.yml │ │ ├── compute_profile-4.yml │ │ ├── compute_profile-5.yml │ │ ├── compute_profile-6.yml │ │ ├── compute_profile-7.yml │ │ ├── compute_profile-8.yml │ │ ├── compute_profile_ovirt-0.yml │ │ ├── compute_profile_ovirt-1.yml │ │ ├── compute_profile_ovirt-2.yml │ │ ├── compute_profile_ovirt-3.yml │ │ ├── compute_profiles_role-0.yml │ │ ├── compute_resource-0.yml │ │ ├── compute_resource-1.yml │ │ ├── compute_resource-2.yml │ │ ├── compute_resource-3.yml │ │ ├── compute_resource-4.yml │ │ ├── compute_resource-5.yml │ │ ├── compute_resource-6.yml │ │ ├── compute_resource-7.yml │ │ ├── compute_resources_role-0.yml │ │ ├── compute_resources_role-1.yml │ │ ├── config_group-0.yml │ │ ├── config_group-1.yml │ │ ├── config_group-10.yml │ │ ├── config_group-11.yml │ │ ├── config_group-2.yml │ │ ├── config_group-3.yml │ │ ├── config_group-4.yml │ │ ├── config_group-5.yml │ │ ├── config_group-6.yml │ │ ├── config_group-7.yml │ │ ├── config_group-8.yml │ │ ├── config_group-9.yml │ │ ├── content_credential-0.yml │ │ ├── content_credential-1.yml │ │ ├── content_credential-2.yml │ │ ├── content_credential-3.yml │ │ ├── content_credential-4.yml │ │ ├── content_credential-5.yml │ │ ├── content_credential-6.yml │ │ ├── content_credential-7.yml │ │ ├── content_credentials_role-0.yml │ │ ├── content_credentials_role-1.yml │ │ ├── content_export_info-0.yml │ │ ├── content_export_info-1.yml │ │ ├── content_export_library-0.yml │ │ ├── content_export_library-1.yml │ │ ├── content_export_library-2.yml │ │ ├── content_export_repository-0.yml │ │ ├── content_export_repository-1.yml │ │ ├── content_export_repository-2.yml │ │ ├── content_export_version-0.yml │ │ ├── content_export_version-1.yml │ │ ├── content_export_version-2.yml │ │ ├── content_import_info-0.yml │ │ ├── content_import_library-0.yml │ │ ├── content_import_repository-0.yml │ │ ├── content_import_version-0.yml │ │ ├── content_rhel_role-0.yml │ │ ├── content_rhel_role-1.yml │ │ ├── content_rhel_role-2.yml │ │ ├── content_rhel_role-3.yml │ │ ├── content_rhel_role-5.yml │ │ ├── content_rhel_role-7.yml │ │ ├── content_rhel_role-8.yml │ │ ├── content_rhel_role-9.yml │ │ ├── content_upload-0.yml │ │ ├── content_upload-1.yml │ │ ├── content_upload-2.yml │ │ ├── content_upload-3.yml │ │ ├── content_upload-4.yml │ │ ├── content_upload-5.yml │ │ ├── content_upload-6.yml │ │ ├── content_upload-7.yml │ │ ├── content_upload_deb-0.yml │ │ ├── content_upload_deb-1.yml │ │ ├── content_upload_ostree-0.yml │ │ ├── content_upload_ostree-1.yml │ │ ├── content_view-0.yml │ │ ├── content_view-1.yml │ │ ├── content_view-10.yml │ │ ├── content_view-11.yml │ │ ├── content_view-12.yml │ │ ├── content_view-13.yml │ │ ├── content_view-14.yml │ │ ├── content_view-15.yml │ │ ├── content_view-16.yml │ │ ├── content_view-17.yml │ │ ├── content_view-18.yml │ │ ├── content_view-19.yml │ │ ├── content_view-2.yml │ │ ├── content_view-20.yml │ │ ├── content_view-21.yml │ │ ├── content_view-22.yml │ │ ├── content_view-23.yml │ │ ├── content_view-3.yml │ │ ├── content_view-4.yml │ │ ├── content_view-5.yml │ │ ├── content_view-6.yml │ │ ├── content_view-7.yml │ │ ├── content_view-8.yml │ │ ├── content_view-9.yml │ │ ├── content_view_filter-0.yml │ │ ├── content_view_filter-1.yml │ │ ├── content_view_filter-10.yml │ │ ├── content_view_filter-11.yml │ │ ├── content_view_filter-12.yml │ │ ├── content_view_filter-13.yml │ │ ├── content_view_filter-14.yml │ │ ├── content_view_filter-15.yml │ │ ├── content_view_filter-16.yml │ │ ├── content_view_filter-17.yml │ │ ├── content_view_filter-18.yml │ │ ├── content_view_filter-19.yml │ │ ├── content_view_filter-2.yml │ │ ├── content_view_filter-20.yml │ │ ├── content_view_filter-21.yml │ │ ├── content_view_filter-22.yml │ │ ├── content_view_filter-3.yml │ │ ├── content_view_filter-4.yml │ │ ├── content_view_filter-5.yml │ │ ├── content_view_filter-6.yml │ │ ├── content_view_filter-7.yml │ │ ├── content_view_filter-8.yml │ │ ├── content_view_filter-9.yml │ │ ├── content_view_filter_deb-0.yml │ │ ├── content_view_filter_deb-1.yml │ │ ├── content_view_filter_deb-2.yml │ │ ├── content_view_filter_deb-3.yml │ │ ├── content_view_filter_info-0.yml │ │ ├── content_view_filter_info-1.yml │ │ ├── content_view_filter_info-2.yml │ │ ├── content_view_filter_info-3.yml │ │ ├── content_view_filter_info-4.yml │ │ ├── content_view_filter_info-5.yml │ │ ├── content_view_filter_info-6.yml │ │ ├── content_view_filter_info-7.yml │ │ ├── content_view_filter_info_deb-0.yml │ │ ├── content_view_filter_info_deb-1.yml │ │ ├── content_view_filter_rule-0.yml │ │ ├── content_view_filter_rule-1.yml │ │ ├── content_view_filter_rule-10.yml │ │ ├── content_view_filter_rule-11.yml │ │ ├── content_view_filter_rule-12.yml │ │ ├── content_view_filter_rule-13.yml │ │ ├── content_view_filter_rule-14.yml │ │ ├── content_view_filter_rule-15.yml │ │ ├── content_view_filter_rule-16.yml │ │ ├── content_view_filter_rule-17.yml │ │ ├── content_view_filter_rule-18.yml │ │ ├── content_view_filter_rule-19.yml │ │ ├── content_view_filter_rule-2.yml │ │ ├── content_view_filter_rule-20.yml │ │ ├── content_view_filter_rule-21.yml │ │ ├── content_view_filter_rule-22.yml │ │ ├── content_view_filter_rule-23.yml │ │ ├── content_view_filter_rule-24.yml │ │ ├── content_view_filter_rule-25.yml │ │ ├── content_view_filter_rule-26.yml │ │ ├── content_view_filter_rule-27.yml │ │ ├── content_view_filter_rule-3.yml │ │ ├── content_view_filter_rule-4.yml │ │ ├── content_view_filter_rule-5.yml │ │ ├── content_view_filter_rule-6.yml │ │ ├── content_view_filter_rule-7.yml │ │ ├── content_view_filter_rule-8.yml │ │ ├── content_view_filter_rule-9.yml │ │ ├── content_view_filter_rule_deb-0.yml │ │ ├── content_view_filter_rule_deb-1.yml │ │ ├── content_view_filter_rule_deb-2.yml │ │ ├── content_view_filter_rule_deb-3.yml │ │ ├── content_view_filter_rule_deb-4.yml │ │ ├── content_view_filter_rule_info-0.yml │ │ ├── content_view_filter_rule_info-1.yml │ │ ├── content_view_filter_rule_info-2.yml │ │ ├── content_view_filter_rule_info-3.yml │ │ ├── content_view_filter_rule_info-4.yml │ │ ├── content_view_filter_rule_info-5.yml │ │ ├── content_view_filter_rule_info_deb-0.yml │ │ ├── content_view_history_info-0.yml │ │ ├── content_view_info-0.yml │ │ ├── content_view_info-1.yml │ │ ├── content_view_publish_role-0.yml │ │ ├── content_view_publish_role-1.yml │ │ ├── content_view_version-0.yml │ │ ├── content_view_version-1.yml │ │ ├── content_view_version-2.yml │ │ ├── content_view_version-3.yml │ │ ├── content_view_version-4.yml │ │ ├── content_view_version-5.yml │ │ ├── content_view_version-6.yml │ │ ├── content_view_version-7.yml │ │ ├── content_view_version-8.yml │ │ ├── content_view_version-9.yml │ │ ├── content_view_version_cleanup_role-0.yml │ │ ├── content_view_version_cleanup_role-1.yml │ │ ├── content_view_version_cleanup_role-10.yml │ │ ├── content_view_version_cleanup_role-11.yml │ │ ├── content_view_version_cleanup_role-12.yml │ │ ├── content_view_version_cleanup_role-13.yml │ │ ├── content_view_version_cleanup_role-2.yml │ │ ├── content_view_version_cleanup_role-3.yml │ │ ├── content_view_version_cleanup_role-4.yml │ │ ├── content_view_version_cleanup_role-5.yml │ │ ├── content_view_version_cleanup_role-6.yml │ │ ├── content_view_version_cleanup_role-7.yml │ │ ├── content_view_version_cleanup_role-8.yml │ │ ├── content_view_version_cleanup_role-9.yml │ │ ├── content_view_version_info-0.yml │ │ ├── content_view_version_info-1.yml │ │ ├── content_views_role-0.yml │ │ ├── content_views_role-1.yml │ │ ├── content_views_role-2.yml │ │ ├── content_views_role-3.yml │ │ ├── content_views_role-4.yml │ │ ├── convert2rhel-0.yml │ │ ├── convert2rhel-1.yml │ │ ├── convert2rhel-10.yml │ │ ├── convert2rhel-11.yml │ │ ├── convert2rhel-12.yml │ │ ├── convert2rhel-13.yml │ │ ├── convert2rhel-14.yml │ │ ├── convert2rhel-15.yml │ │ ├── convert2rhel-16.yml │ │ ├── convert2rhel-17.yml │ │ ├── convert2rhel-18.yml │ │ ├── convert2rhel-19.yml │ │ ├── convert2rhel-2.yml │ │ ├── convert2rhel-20.yml │ │ ├── convert2rhel-21.yml │ │ ├── convert2rhel-22.yml │ │ ├── convert2rhel-23.yml │ │ ├── convert2rhel-24.yml │ │ ├── convert2rhel-25.yml │ │ ├── convert2rhel-26.yml │ │ ├── convert2rhel-3.yml │ │ ├── convert2rhel-4.yml │ │ ├── convert2rhel-5.yml │ │ ├── convert2rhel-6.yml │ │ ├── convert2rhel-7.yml │ │ ├── convert2rhel-8.yml │ │ ├── convert2rhel-9.yml │ │ ├── discovery_rule-0.yml │ │ ├── discovery_rule-1.yml │ │ ├── discovery_rule-2.yml │ │ ├── discovery_rule-3.yml │ │ ├── domain-0.yml │ │ ├── domain-1.yml │ │ ├── domain-10.yml │ │ ├── domain-11.yml │ │ ├── domain-12.yml │ │ ├── domain-13.yml │ │ ├── domain-14.yml │ │ ├── domain-15.yml │ │ ├── domain-16.yml │ │ ├── domain-17.yml │ │ ├── domain-18.yml │ │ ├── domain-19.yml │ │ ├── domain-2.yml │ │ ├── domain-3.yml │ │ ├── domain-4.yml │ │ ├── domain-5.yml │ │ ├── domain-6.yml │ │ ├── domain-7.yml │ │ ├── domain-8.yml │ │ ├── domain-9.yml │ │ ├── domain_info-0.yml │ │ ├── domain_info-1.yml │ │ ├── domains_role-0.yml │ │ ├── external_usergroup-0.yml │ │ ├── external_usergroup-1.yml │ │ ├── external_usergroup-2.yml │ │ ├── external_usergroup-3.yml │ │ ├── flatpak_remote-0.yml │ │ ├── flatpak_remote-1.yml │ │ ├── flatpak_remote-2.yml │ │ ├── flatpak_remote-3.yml │ │ ├── flatpak_remote-4.yml │ │ ├── flatpak_remote-5.yml │ │ ├── flatpak_remote_repository_mirror-0.yml │ │ ├── flatpak_remote_repository_mirror-1.yml │ │ ├── flatpak_remote_scan-0.yml │ │ ├── global_parameter-0.yml │ │ ├── global_parameter-1.yml │ │ ├── global_parameter-10.yml │ │ ├── global_parameter-11.yml │ │ ├── global_parameter-12.yml │ │ ├── global_parameter-13.yml │ │ ├── global_parameter-14.yml │ │ ├── global_parameter-15.yml │ │ ├── global_parameter-16.yml │ │ ├── global_parameter-17.yml │ │ ├── global_parameter-18.yml │ │ ├── global_parameter-19.yml │ │ ├── global_parameter-2.yml │ │ ├── global_parameter-20.yml │ │ ├── global_parameter-21.yml │ │ ├── global_parameter-22.yml │ │ ├── global_parameter-23.yml │ │ ├── global_parameter-24.yml │ │ ├── global_parameter-25.yml │ │ ├── global_parameter-26.yml │ │ ├── global_parameter-27.yml │ │ ├── global_parameter-3.yml │ │ ├── global_parameter-4.yml │ │ ├── global_parameter-5.yml │ │ ├── global_parameter-6.yml │ │ ├── global_parameter-7.yml │ │ ├── global_parameter-8.yml │ │ ├── global_parameter-9.yml │ │ ├── hardware_model-0.yml │ │ ├── hardware_model-1.yml │ │ ├── hardware_model-2.yml │ │ ├── hardware_model-3.yml │ │ ├── hardware_model-4.yml │ │ ├── hardware_model-5.yml │ │ ├── host-0.yml │ │ ├── host-1.yml │ │ ├── host-10.yml │ │ ├── host-11.yml │ │ ├── host-12.yml │ │ ├── host-13.yml │ │ ├── host-14.yml │ │ ├── host-15.yml │ │ ├── host-16.yml │ │ ├── host-17.yml │ │ ├── host-18.yml │ │ ├── host-19.yml │ │ ├── host-2.yml │ │ ├── host-20.yml │ │ ├── host-21.yml │ │ ├── host-22.yml │ │ ├── host-23.yml │ │ ├── host-24.yml │ │ ├── host-25.yml │ │ ├── host-26.yml │ │ ├── host-27.yml │ │ ├── host-28.yml │ │ ├── host-29.yml │ │ ├── host-3.yml │ │ ├── host-30.yml │ │ ├── host-31.yml │ │ ├── host-32.yml │ │ ├── host-33.yml │ │ ├── host-34.yml │ │ ├── host-35.yml │ │ ├── host-36.yml │ │ ├── host-37.yml │ │ ├── host-38.yml │ │ ├── host-4.yml │ │ ├── host-5.yml │ │ ├── host-6.yml │ │ ├── host-7.yml │ │ ├── host-8.yml │ │ ├── host-9.yml │ │ ├── host_collection-0.yml │ │ ├── host_collection-1.yml │ │ ├── host_collection-2.yml │ │ ├── host_collection-3.yml │ │ ├── host_collection-4.yml │ │ ├── host_collection-5.yml │ │ ├── host_collection-6.yml │ │ ├── host_collection-7.yml │ │ ├── host_collection-8.yml │ │ ├── host_errata_info-0.yml │ │ ├── host_errata_info-1.yml │ │ ├── host_info-0.yml │ │ ├── host_info-1.yml │ │ ├── host_interface_attributes-0.yml │ │ ├── host_interface_attributes-1.yml │ │ ├── host_interface_attributes-2.yml │ │ ├── host_interface_attributes-3.yml │ │ ├── host_interface_attributes-4.yml │ │ ├── host_interface_attributes-5.yml │ │ ├── host_interface_attributes-6.yml │ │ ├── host_interface_attributes-7.yml │ │ ├── host_interface_attributes-8.yml │ │ ├── host_interface_attributes-9.yml │ │ ├── host_power-0.yml │ │ ├── host_power-1.yml │ │ ├── host_power-2.yml │ │ ├── host_power-3.yml │ │ ├── host_power-4.yml │ │ ├── host_power-5.yml │ │ ├── host_power-6.yml │ │ ├── host_power-7.yml │ │ ├── hostgroup-0.yml │ │ ├── hostgroup-1.yml │ │ ├── hostgroup-10.yml │ │ ├── hostgroup-11.yml │ │ ├── hostgroup-12.yml │ │ ├── hostgroup-13.yml │ │ ├── hostgroup-14.yml │ │ ├── hostgroup-15.yml │ │ ├── hostgroup-16.yml │ │ ├── hostgroup-17.yml │ │ ├── hostgroup-18.yml │ │ ├── hostgroup-19.yml │ │ ├── hostgroup-2.yml │ │ ├── hostgroup-20.yml │ │ ├── hostgroup-21.yml │ │ ├── hostgroup-22.yml │ │ ├── hostgroup-23.yml │ │ ├── hostgroup-24.yml │ │ ├── hostgroup-25.yml │ │ ├── hostgroup-26.yml │ │ ├── hostgroup-27.yml │ │ ├── hostgroup-28.yml │ │ ├── hostgroup-29.yml │ │ ├── hostgroup-3.yml │ │ ├── hostgroup-30.yml │ │ ├── hostgroup-31.yml │ │ ├── hostgroup-32.yml │ │ ├── hostgroup-33.yml │ │ ├── hostgroup-4.yml │ │ ├── hostgroup-5.yml │ │ ├── hostgroup-6.yml │ │ ├── hostgroup-7.yml │ │ ├── hostgroup-8.yml │ │ ├── hostgroup-9.yml │ │ ├── hostgroup_info-0.yml │ │ ├── hostgroup_info-1.yml │ │ ├── hostgroups_role-0.yml │ │ ├── hostgroups_role-1.yml │ │ ├── hostgroups_role-2.yml │ │ ├── http_proxy-0.yml │ │ ├── http_proxy-1.yml │ │ ├── http_proxy-2.yml │ │ ├── http_proxy-3.yml │ │ ├── http_proxy-4.yml │ │ ├── http_proxy-5.yml │ │ ├── http_proxy-6.yml │ │ ├── http_proxy-7.yml │ │ ├── http_proxy-8.yml │ │ ├── http_proxy-9.yml │ │ ├── image-0.yml │ │ ├── image-1.yml │ │ ├── image-2.yml │ │ ├── image-3.yml │ │ ├── image-4.yml │ │ ├── image-5.yml │ │ ├── image-6.yml │ │ ├── image-7.yml │ │ ├── installation_medium-0.yml │ │ ├── installation_medium-1.yml │ │ ├── installation_medium-10.yml │ │ ├── installation_medium-11.yml │ │ ├── installation_medium-12.yml │ │ ├── installation_medium-13.yml │ │ ├── installation_medium-2.yml │ │ ├── installation_medium-3.yml │ │ ├── installation_medium-4.yml │ │ ├── installation_medium-5.yml │ │ ├── installation_medium-6.yml │ │ ├── installation_medium-7.yml │ │ ├── installation_medium-8.yml │ │ ├── installation_medium-9.yml │ │ ├── job_invocation-0.yml │ │ ├── job_invocation-1.yml │ │ ├── job_invocation-2.yml │ │ ├── job_template-0.yml │ │ ├── job_template-1.yml │ │ ├── job_template-10.yml │ │ ├── job_template-11.yml │ │ ├── job_template-12.yml │ │ ├── job_template-13.yml │ │ ├── job_template-2.yml │ │ ├── job_template-3.yml │ │ ├── job_template-4.yml │ │ ├── job_template-5.yml │ │ ├── job_template-6.yml │ │ ├── job_template-7.yml │ │ ├── job_template-8.yml │ │ ├── job_template-9.yml │ │ ├── katello_hostgroup-0.yml │ │ ├── katello_hostgroup-1.yml │ │ ├── katello_hostgroup-2.yml │ │ ├── katello_hostgroup-3.yml │ │ ├── katello_hostgroup-4.yml │ │ ├── katello_hostgroup-5.yml │ │ ├── katello_hostgroup-6.yml │ │ ├── katello_hostgroup-7.yml │ │ ├── katello_smart_proxy-0.yml │ │ ├── katello_smart_proxy-1.yml │ │ ├── katello_smart_proxy-2.yml │ │ ├── katello_smart_proxy-3.yml │ │ ├── katello_smart_proxy-4.yml │ │ ├── katello_smart_proxy-5.yml │ │ ├── katello_smart_proxy-6.yml │ │ ├── katello_smart_proxy-7.yml │ │ ├── lifecycle_environment-0.yml │ │ ├── lifecycle_environment-1.yml │ │ ├── lifecycle_environment-10.yml │ │ ├── lifecycle_environment-2.yml │ │ ├── lifecycle_environment-3.yml │ │ ├── lifecycle_environment-4.yml │ │ ├── lifecycle_environment-5.yml │ │ ├── lifecycle_environment-6.yml │ │ ├── lifecycle_environment-7.yml │ │ ├── lifecycle_environment-8.yml │ │ ├── lifecycle_environment-9.yml │ │ ├── lifecycle_environments_role-0.yml │ │ ├── lifecycle_environments_role-1.yml │ │ ├── lifecycle_environments_role-2.yml │ │ ├── location-0.yml │ │ ├── location-1.yml │ │ ├── location-10.yml │ │ ├── location-11.yml │ │ ├── location-12.yml │ │ ├── location-13.yml │ │ ├── location-14.yml │ │ ├── location-15.yml │ │ ├── location-16.yml │ │ ├── location-17.yml │ │ ├── location-18.yml │ │ ├── location-19.yml │ │ ├── location-2.yml │ │ ├── location-20.yml │ │ ├── location-21.yml │ │ ├── location-22.yml │ │ ├── location-23.yml │ │ ├── location-24.yml │ │ ├── location-25.yml │ │ ├── location-26.yml │ │ ├── location-27.yml │ │ ├── location-3.yml │ │ ├── location-4.yml │ │ ├── location-5.yml │ │ ├── location-6.yml │ │ ├── location-7.yml │ │ ├── location-8.yml │ │ ├── location-9.yml │ │ ├── locations_role-0.yml │ │ ├── locations_role-1.yml │ │ ├── luna_hostgroup-0.yml │ │ ├── luna_hostgroup-1.yml │ │ ├── luna_hostgroup-2.yml │ │ ├── luna_hostgroup-3.yml │ │ ├── luna_hostgroup-4.yml │ │ ├── luna_hostgroup-5.yml │ │ ├── manifest_role-0.yml │ │ ├── module_defaults-0.yml │ │ ├── module_defaults-1.yml │ │ ├── operatingsystem-0.yml │ │ ├── operatingsystem-1.yml │ │ ├── operatingsystem-10.yml │ │ ├── operatingsystem-11.yml │ │ ├── operatingsystem-12.yml │ │ ├── operatingsystem-13.yml │ │ ├── operatingsystem-14.yml │ │ ├── operatingsystem-2.yml │ │ ├── operatingsystem-3.yml │ │ ├── operatingsystem-4.yml │ │ ├── operatingsystem-5.yml │ │ ├── operatingsystem-6.yml │ │ ├── operatingsystem-7.yml │ │ ├── operatingsystem-8.yml │ │ ├── operatingsystem-9.yml │ │ ├── operatingsystems_role-0.yml │ │ ├── operatingsystems_role-1.yml │ │ ├── operatingsystems_role-2.yml │ │ ├── organization-0.yml │ │ ├── organization-1.yml │ │ ├── organization-10.yml │ │ ├── organization-11.yml │ │ ├── organization-12.yml │ │ ├── organization-13.yml │ │ ├── organization-14.yml │ │ ├── organization-15.yml │ │ ├── organization-16.yml │ │ ├── organization-2.yml │ │ ├── organization-3.yml │ │ ├── organization-4.yml │ │ ├── organization-5.yml │ │ ├── organization-6.yml │ │ ├── organization-7.yml │ │ ├── organization-8.yml │ │ ├── organization-9.yml │ │ ├── organization_info-0.yml │ │ ├── organization_info-1.yml │ │ ├── organizations_role-0.yml │ │ ├── organizations_role-1.yml │ │ ├── os_default_template-0.yml │ │ ├── os_default_template-1.yml │ │ ├── os_default_template-2.yml │ │ ├── os_default_template-3.yml │ │ ├── os_default_template-4.yml │ │ ├── os_default_template-5.yml │ │ ├── os_default_template-6.yml │ │ ├── os_default_template-7.yml │ │ ├── partition_table-0.yml │ │ ├── partition_table-1.yml │ │ ├── partition_table-10.yml │ │ ├── partition_table-11.yml │ │ ├── partition_table-12.yml │ │ ├── partition_table-13.yml │ │ ├── partition_table-14.yml │ │ ├── partition_table-15.yml │ │ ├── partition_table-16.yml │ │ ├── partition_table-17.yml │ │ ├── partition_table-18.yml │ │ ├── partition_table-19.yml │ │ ├── partition_table-2.yml │ │ ├── partition_table-20.yml │ │ ├── partition_table-3.yml │ │ ├── partition_table-4.yml │ │ ├── partition_table-5.yml │ │ ├── partition_table-6.yml │ │ ├── partition_table-7.yml │ │ ├── partition_table-8.yml │ │ ├── partition_table-9.yml │ │ ├── product-0.yml │ │ ├── product-1.yml │ │ ├── product-10.yml │ │ ├── product-11.yml │ │ ├── product-12.yml │ │ ├── product-2.yml │ │ ├── product-3.yml │ │ ├── product-4.yml │ │ ├── product-5.yml │ │ ├── product-6.yml │ │ ├── product-7.yml │ │ ├── product-8.yml │ │ ├── product-9.yml │ │ ├── provisioning_template-0.yml │ │ ├── provisioning_template-1.yml │ │ ├── provisioning_template-10.yml │ │ ├── provisioning_template-11.yml │ │ ├── provisioning_template-12.yml │ │ ├── provisioning_template-13.yml │ │ ├── provisioning_template-14.yml │ │ ├── provisioning_template-15.yml │ │ ├── provisioning_template-16.yml │ │ ├── provisioning_template-17.yml │ │ ├── provisioning_template-18.yml │ │ ├── provisioning_template-2.yml │ │ ├── provisioning_template-3.yml │ │ ├── provisioning_template-4.yml │ │ ├── provisioning_template-5.yml │ │ ├── provisioning_template-6.yml │ │ ├── provisioning_template-7.yml │ │ ├── provisioning_template-8.yml │ │ ├── provisioning_template-9.yml │ │ ├── provisioning_templates_role-0.yml │ │ ├── puppet_environment-0.yml │ │ ├── puppet_environment-1.yml │ │ ├── puppet_environment-2.yml │ │ ├── puppet_environment-3.yml │ │ ├── puppet_environment-4.yml │ │ ├── puppet_environment-5.yml │ │ ├── puppetclasses_import-0.yml │ │ ├── puppetclasses_import-1.yml │ │ ├── realm-0.yml │ │ ├── realm-1.yml │ │ ├── realm-2.yml │ │ ├── realm-3.yml │ │ ├── redhat_manifest-0.yml │ │ ├── redhat_manifest-1.yml │ │ ├── redhat_manifest-2.yml │ │ ├── registration_command-0.yml │ │ ├── repositories_role-0.yml │ │ ├── repositories_role-1.yml │ │ ├── repositories_role-2.yml │ │ ├── repositories_role-3.yml │ │ ├── repositories_role-4.yml │ │ ├── repositories_role-5.yml │ │ ├── repositories_role_deb-0.yml │ │ ├── repositories_role_deb-1.yml │ │ ├── repository-0.yml │ │ ├── repository-1.yml │ │ ├── repository-10.yml │ │ ├── repository-11.yml │ │ ├── repository-12.yml │ │ ├── repository-13.yml │ │ ├── repository-14.yml │ │ ├── repository-15.yml │ │ ├── repository-16.yml │ │ ├── repository-17.yml │ │ ├── repository-18.yml │ │ ├── repository-19.yml │ │ ├── repository-2.yml │ │ ├── repository-20.yml │ │ ├── repository-3.yml │ │ ├── repository-4.yml │ │ ├── repository-5.yml │ │ ├── repository-6.yml │ │ ├── repository-7.yml │ │ ├── repository-8.yml │ │ ├── repository-9.yml │ │ ├── repository_deb-0.yml │ │ ├── repository_deb-1.yml │ │ ├── repository_deb-2.yml │ │ ├── repository_deb-3.yml │ │ ├── repository_info-0.yml │ │ ├── repository_info-1.yml │ │ ├── repository_ostree-0.yml │ │ ├── repository_ostree-1.yml │ │ ├── repository_ostree-2.yml │ │ ├── repository_set-0.yml │ │ ├── repository_set-1.yml │ │ ├── repository_set-10.yml │ │ ├── repository_set-11.yml │ │ ├── repository_set-12.yml │ │ ├── repository_set-2.yml │ │ ├── repository_set-3.yml │ │ ├── repository_set-4.yml │ │ ├── repository_set-5.yml │ │ ├── repository_set-6.yml │ │ ├── repository_set-7.yml │ │ ├── repository_set-8.yml │ │ ├── repository_set-9.yml │ │ ├── repository_set_info-0.yml │ │ ├── repository_set_info-1.yml │ │ ├── repository_sync-0.yml │ │ ├── repository_sync-1.yml │ │ ├── repository_sync-2.yml │ │ ├── resource_info-0.yml │ │ ├── resource_info-1.yml │ │ ├── resource_info-2.yml │ │ ├── resource_info-3.yml │ │ ├── resource_info-4.yml │ │ ├── resource_info-5.yml │ │ ├── resource_info-6.yml │ │ ├── role-0.yml │ │ ├── role-1.yml │ │ ├── role-10.yml │ │ ├── role-11.yml │ │ ├── role-2.yml │ │ ├── role-3.yml │ │ ├── role-4.yml │ │ ├── role-5.yml │ │ ├── role-6.yml │ │ ├── role-7.yml │ │ ├── role-8.yml │ │ ├── role-9.yml │ │ ├── scap_content-0.yml │ │ ├── scap_content-1.yml │ │ ├── scap_content-2.yml │ │ ├── scap_content-3.yml │ │ ├── scap_content-4.yml │ │ ├── scap_content-5.yml │ │ ├── scap_tailoring_file-0.yml │ │ ├── scap_tailoring_file-1.yml │ │ ├── scap_tailoring_file-2.yml │ │ ├── scap_tailoring_file-3.yml │ │ ├── scap_tailoring_file-4.yml │ │ ├── scap_tailoring_file-5.yml │ │ ├── scc_account-0.yml │ │ ├── scc_account-1.yml │ │ ├── scc_account-2.yml │ │ ├── scc_account-3.yml │ │ ├── scc_account-4.yml │ │ ├── scc_account-5.yml │ │ ├── scc_account-6.yml │ │ ├── scc_account-7.yml │ │ ├── scc_account-8.yml │ │ ├── scc_product-0.yml │ │ ├── scc_product-1.yml │ │ ├── scc_product_old-0.yml │ │ ├── scc_product_old-1.yml │ │ ├── setting-0.yml │ │ ├── setting-1.yml │ │ ├── setting-2.yml │ │ ├── setting-3.yml │ │ ├── setting-4.yml │ │ ├── setting-5.yml │ │ ├── setting-6.yml │ │ ├── setting-7.yml │ │ ├── setting-8.yml │ │ ├── setting-9.yml │ │ ├── setting_info-0.yml │ │ ├── setting_info-1.yml │ │ ├── settings_role-0.yml │ │ ├── settings_role-1.yml │ │ ├── smart_class_parameter-0.yml │ │ ├── smart_class_parameter-1.yml │ │ ├── smart_class_parameter-10.yml │ │ ├── smart_class_parameter-11.yml │ │ ├── smart_class_parameter-12.yml │ │ ├── smart_class_parameter-13.yml │ │ ├── smart_class_parameter-14.yml │ │ ├── smart_class_parameter-15.yml │ │ ├── smart_class_parameter-16.yml │ │ ├── smart_class_parameter-17.yml │ │ ├── smart_class_parameter-18.yml │ │ ├── smart_class_parameter-19.yml │ │ ├── smart_class_parameter-2.yml │ │ ├── smart_class_parameter-20.yml │ │ ├── smart_class_parameter-21.yml │ │ ├── smart_class_parameter-22.yml │ │ ├── smart_class_parameter-23.yml │ │ ├── smart_class_parameter-24.yml │ │ ├── smart_class_parameter-25.yml │ │ ├── smart_class_parameter-26.yml │ │ ├── smart_class_parameter-27.yml │ │ ├── smart_class_parameter-28.yml │ │ ├── smart_class_parameter-29.yml │ │ ├── smart_class_parameter-3.yml │ │ ├── smart_class_parameter-30.yml │ │ ├── smart_class_parameter-31.yml │ │ ├── smart_class_parameter-32.yml │ │ ├── smart_class_parameter-33.yml │ │ ├── smart_class_parameter-34.yml │ │ ├── smart_class_parameter-35.yml │ │ ├── smart_class_parameter-36.yml │ │ ├── smart_class_parameter-37.yml │ │ ├── smart_class_parameter-38.yml │ │ ├── smart_class_parameter-39.yml │ │ ├── smart_class_parameter-4.yml │ │ ├── smart_class_parameter-40.yml │ │ ├── smart_class_parameter-41.yml │ │ ├── smart_class_parameter-42.yml │ │ ├── smart_class_parameter-43.yml │ │ ├── smart_class_parameter-44.yml │ │ ├── smart_class_parameter-45.yml │ │ ├── smart_class_parameter-46.yml │ │ ├── smart_class_parameter-47.yml │ │ ├── smart_class_parameter-48.yml │ │ ├── smart_class_parameter-49.yml │ │ ├── smart_class_parameter-5.yml │ │ ├── smart_class_parameter-50.yml │ │ ├── smart_class_parameter-51.yml │ │ ├── smart_class_parameter-52.yml │ │ ├── smart_class_parameter-53.yml │ │ ├── smart_class_parameter-54.yml │ │ ├── smart_class_parameter-55.yml │ │ ├── smart_class_parameter-56.yml │ │ ├── smart_class_parameter-57.yml │ │ ├── smart_class_parameter-58.yml │ │ ├── smart_class_parameter-59.yml │ │ ├── smart_class_parameter-6.yml │ │ ├── smart_class_parameter-60.yml │ │ ├── smart_class_parameter-61.yml │ │ ├── smart_class_parameter-7.yml │ │ ├── smart_class_parameter-8.yml │ │ ├── smart_class_parameter-9.yml │ │ ├── smart_class_parameter_override_value-0.yml │ │ ├── smart_class_parameter_override_value-1.yml │ │ ├── smart_class_parameter_override_value-10.yml │ │ ├── smart_class_parameter_override_value-11.yml │ │ ├── smart_class_parameter_override_value-12.yml │ │ ├── smart_class_parameter_override_value-13.yml │ │ ├── smart_class_parameter_override_value-14.yml │ │ ├── smart_class_parameter_override_value-15.yml │ │ ├── smart_class_parameter_override_value-16.yml │ │ ├── smart_class_parameter_override_value-17.yml │ │ ├── smart_class_parameter_override_value-18.yml │ │ ├── smart_class_parameter_override_value-19.yml │ │ ├── smart_class_parameter_override_value-2.yml │ │ ├── smart_class_parameter_override_value-20.yml │ │ ├── smart_class_parameter_override_value-21.yml │ │ ├── smart_class_parameter_override_value-22.yml │ │ ├── smart_class_parameter_override_value-23.yml │ │ ├── smart_class_parameter_override_value-3.yml │ │ ├── smart_class_parameter_override_value-4.yml │ │ ├── smart_class_parameter_override_value-5.yml │ │ ├── smart_class_parameter_override_value-6.yml │ │ ├── smart_class_parameter_override_value-7.yml │ │ ├── smart_class_parameter_override_value-8.yml │ │ ├── smart_class_parameter_override_value-9.yml │ │ ├── smart_proxy-0.yml │ │ ├── smart_proxy-1.yml │ │ ├── smart_proxy-2.yml │ │ ├── smart_proxy-3.yml │ │ ├── snapshot-0.yml │ │ ├── snapshot-1.yml │ │ ├── snapshot-2.yml │ │ ├── snapshot-3.yml │ │ ├── snapshot-4.yml │ │ ├── snapshot-5.yml │ │ ├── snapshot-6.yml │ │ ├── snapshot_info-0.yml │ │ ├── status_info-0.yml │ │ ├── subnet-0.yml │ │ ├── subnet-1.yml │ │ ├── subnet-10.yml │ │ ├── subnet-11.yml │ │ ├── subnet-12.yml │ │ ├── subnet-13.yml │ │ ├── subnet-14.yml │ │ ├── subnet-15.yml │ │ ├── subnet-16.yml │ │ ├── subnet-17.yml │ │ ├── subnet-18.yml │ │ ├── subnet-19.yml │ │ ├── subnet-2.yml │ │ ├── subnet-20.yml │ │ ├── subnet-21.yml │ │ ├── subnet-22.yml │ │ ├── subnet-23.yml │ │ ├── subnet-24.yml │ │ ├── subnet-3.yml │ │ ├── subnet-4.yml │ │ ├── subnet-5.yml │ │ ├── subnet-6.yml │ │ ├── subnet-7.yml │ │ ├── subnet-8.yml │ │ ├── subnet-9.yml │ │ ├── subnet_info-0.yml │ │ ├── subnet_info-1.yml │ │ ├── subnets_role-0.yml │ │ ├── subscription_info-0.yml │ │ ├── subscription_info-1.yml │ │ ├── subscription_manifest-0.yml │ │ ├── subscription_manifest-1.yml │ │ ├── subscription_manifest-2.yml │ │ ├── subscription_manifest-3.yml │ │ ├── subscription_manifest-4.yml │ │ ├── subscription_manifest-5.yml │ │ ├── sync_plan-0.yml │ │ ├── sync_plan-1.yml │ │ ├── sync_plan-2.yml │ │ ├── sync_plan-3.yml │ │ ├── sync_plan-4.yml │ │ ├── sync_plan-5.yml │ │ ├── sync_plan-6.yml │ │ ├── sync_plan-7.yml │ │ ├── sync_plan-8.yml │ │ ├── sync_plans_role-0.yml │ │ ├── templates_import-0.yml │ │ ├── templates_import-1.yml │ │ ├── templates_import-2.yml │ │ ├── templates_import-3.yml │ │ ├── templates_import-4.yml │ │ ├── templates_import-5.yml │ │ ├── templates_import-6.yml │ │ ├── user-0.yml │ │ ├── user-1.yml │ │ ├── user-2.yml │ │ ├── user-3.yml │ │ ├── user-4.yml │ │ ├── user-5.yml │ │ ├── user-6.yml │ │ ├── user-7.yml │ │ ├── usergroup-0.yml │ │ ├── usergroup-1.yml │ │ ├── usergroup-10.yml │ │ ├── usergroup-11.yml │ │ ├── usergroup-12.yml │ │ ├── usergroup-2.yml │ │ ├── usergroup-3.yml │ │ ├── usergroup-4.yml │ │ ├── usergroup-5.yml │ │ ├── usergroup-6.yml │ │ ├── usergroup-7.yml │ │ ├── usergroup-8.yml │ │ ├── usergroup-9.yml │ │ ├── wait_for_task-0.yml │ │ ├── wait_for_task-1.yml │ │ ├── wait_for_task-2.yml │ │ ├── webhook-0.yml │ │ ├── webhook-1.yml │ │ ├── webhook-2.yml │ │ ├── webhook-3.yml │ │ ├── webhook-4.yml │ │ ├── webhook-5.yml │ │ ├── webhook-6.yml │ │ ├── webhook-7.yml │ │ ├── webhook-8.yml │ │ └── webhook-9.yml │ ├── flatpak_remote.yml │ ├── flatpak_remote_repository_mirror.yml │ ├── flatpak_remote_scan.yml │ ├── global_parameter.yml │ ├── hardware_model.yml │ ├── host.yml │ ├── host_collection.yml │ ├── host_errata_info.yml │ ├── host_info.yml │ ├── host_interface_attributes.yml │ ├── host_power.yml │ ├── hostgroup.yml │ ├── hostgroup_info.yml │ ├── hostgroups_role.yml │ ├── http_proxy.yml │ ├── image.yml │ ├── installation_medium.yml │ ├── inventory_plugin.yml │ ├── inventory_plugin_ansible.yml │ ├── job_invocation.yml │ ├── job_template.yml │ ├── katello_hostgroup.yml │ ├── katello_smart_proxy.yml │ ├── lifecycle_environment.yml │ ├── lifecycle_environments_role.yml │ ├── location.yml │ ├── locations_role.yml │ ├── luna_hostgroup.yml │ ├── manifest_role.yml │ ├── module_defaults.yml │ ├── operatingsystem.yml │ ├── operatingsystems_role.yml │ ├── organization.yml │ ├── organization_info.yml │ ├── organizations_role.yml │ ├── os_default_template.yml │ ├── partition_table.yml │ ├── product.yml │ ├── provisioning_template.yml │ ├── provisioning_templates_role.yml │ ├── puppet_environment.yml │ ├── puppetclasses_import.yml │ ├── realm.yml │ ├── redhat_manifest.yml │ ├── registration_command.yml │ ├── repositories_role.yml │ ├── repositories_role_deb.yml │ ├── repository.yml │ ├── repository_deb.yml │ ├── repository_info.yml │ ├── repository_ostree.yml │ ├── repository_set.yml │ ├── repository_set_info.yml │ ├── repository_sync.yml │ ├── resource_info.yml │ ├── role.yml │ ├── scap_content.yml │ ├── scap_tailoring_file.yml │ ├── scc_account.yml │ ├── scc_product.yml │ ├── scc_product_old.yml │ ├── setting.yml │ ├── setting_info.yml │ ├── settings_role.yml │ ├── smart_class_parameter.yml │ ├── smart_class_parameter_override_value.yml │ ├── smart_proxy.yml │ ├── snapshot.yml │ ├── snapshot_info.yml │ ├── status_info.yml │ ├── subnet.yml │ ├── subnet_info.yml │ ├── subnets_role.yml │ ├── subscription_info.yml │ ├── subscription_manifest.yml │ ├── sync_plan.yml │ ├── sync_plans_role.yml │ ├── tasks │ │ ├── _assert_diff.yml │ │ ├── activation_key.yml │ │ ├── architecture.yml │ │ ├── auth_source_ldap.yml │ │ ├── bookmark.yml │ │ ├── compute_attribute.yml │ │ ├── compute_profile.yml │ │ ├── compute_resource.yml │ │ ├── config_group.yml │ │ ├── content_credential.yml │ │ ├── content_export_info.yml │ │ ├── content_export_library.yml │ │ ├── content_export_repository.yml │ │ ├── content_export_show.yml │ │ ├── content_export_version.yml │ │ ├── content_import.yml │ │ ├── content_import_info.yml │ │ ├── content_import_setup.yml │ │ ├── content_import_teardown.yml │ │ ├── content_view.yml │ │ ├── content_view_filter.yml │ │ ├── content_view_filter_deb.yml │ │ ├── content_view_filter_docker.yml │ │ ├── content_view_filter_errata_date.yml │ │ ├── content_view_filter_errata_id.yml │ │ ├── content_view_filter_modulemd.yml │ │ ├── content_view_filter_package.yml │ │ ├── content_view_filter_package_group.yml │ │ ├── content_view_filter_rule_cleanup.yml │ │ ├── content_view_filter_rule_containers.yml │ │ ├── content_view_filter_rule_deb.yml │ │ ├── content_view_filter_rule_errata_by_date.yml │ │ ├── content_view_filter_rule_errata_by_id.yml │ │ ├── content_view_filter_rule_modulemd.yml │ │ ├── content_view_filter_rule_package_groups.yml │ │ ├── content_view_filter_rule_packages.yml │ │ ├── content_view_version.yml │ │ ├── discovery_rule.yml │ │ ├── domain.yml │ │ ├── environment.yml │ │ ├── external_usergroup.yml │ │ ├── flatpak_remote.yml │ │ ├── flatpak_remote_repository_mirror.yml │ │ ├── flatpak_remote_scan.yml │ │ ├── global_parameter.yml │ │ ├── host.yml │ │ ├── host_collection.yml │ │ ├── host_power.yml │ │ ├── hostgroup.yml │ │ ├── http_proxy.yml │ │ ├── image.yml │ │ ├── installation_medium.yml │ │ ├── inventory_plugin.yml │ │ ├── inventory_plugin_setup_container.yml │ │ ├── inventory_plugin_setup_data.yml │ │ ├── inventory_plugin_teardown_container.yml │ │ ├── inventory_plugin_tests.yml │ │ ├── job_template.yml │ │ ├── job_template_from_file.yml │ │ ├── katello_sync.yml │ │ ├── lifecycle_environment.yml │ │ ├── location.yml │ │ ├── model.yml │ │ ├── operatingsystem.yml │ │ ├── organization.yml │ │ ├── os_default_template.yml │ │ ├── product.yml │ │ ├── provisioning_template.yml │ │ ├── ptable.yml │ │ ├── puppetclasses_import.yml │ │ ├── realm.yml │ │ ├── redhat_manifest.yml │ │ ├── registration_command.yml │ │ ├── repository.yml │ │ ├── repository_set.yml │ │ ├── resource_info.yml │ │ ├── role.yml │ │ ├── scap_content.yml │ │ ├── scap_tailoring_file.yml │ │ ├── scc_account.yml │ │ ├── scc_product.yml │ │ ├── setting.yml │ │ ├── setting_fact.yml │ │ ├── smart_class_parameter.yml │ │ ├── smart_class_parameter_override_value.yml │ │ ├── smart_proxy.yml │ │ ├── snapshot.yml │ │ ├── status_info.yml │ │ ├── subnet.yml │ │ ├── subscription_manifest.yml │ │ ├── sync_plan.yml │ │ ├── templates_import.yml │ │ ├── upload.yml │ │ ├── user.yml │ │ ├── usergroup.yml │ │ ├── wait_for_task.yml │ │ └── webhook.yml │ ├── templates_import.yml │ ├── user.yml │ ├── usergroup.yml │ ├── vars │ │ ├── compute_profile.yml │ │ ├── domain.yml │ │ ├── host.yml │ │ ├── hostgroup.yml │ │ ├── inventory.yml │ │ ├── resource_info.yml │ │ ├── server.yml.example │ │ ├── subnet.yml │ │ ├── templates_import.yml │ │ └── usergroup.yml │ ├── wait_for_task.yml │ └── webhook.yml ├── utils.py └── vcr_python_wrapper.py └── vendor.py /.ansible-lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/.ansible-lint -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/.mailmap -------------------------------------------------------------------------------- /.packit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/.packit.yaml -------------------------------------------------------------------------------- /.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/.yamllint -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/Makefile -------------------------------------------------------------------------------- /PSF-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/PSF-license.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/README.md -------------------------------------------------------------------------------- /ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/ansible.cfg -------------------------------------------------------------------------------- /bindep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/bindep.txt -------------------------------------------------------------------------------- /changelogs/changelog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/changelogs/changelog.yaml -------------------------------------------------------------------------------- /changelogs/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/changelogs/config.yaml -------------------------------------------------------------------------------- /changelogs/fragments/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /changelogs/fragments/job_invocation-feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/changelogs/fragments/job_invocation-feature.yml -------------------------------------------------------------------------------- /docs/CHANGELOG.rst: -------------------------------------------------------------------------------- 1 | ../CHANGELOG.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- 1 | ../README.md -------------------------------------------------------------------------------- /docs/_gh_include/footer.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/docs/_gh_include/footer.inc -------------------------------------------------------------------------------- /docs/_gh_include/header.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/docs/_gh_include/header.inc -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/cvmanager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/docs/cvmanager.md -------------------------------------------------------------------------------- /docs/developing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/docs/developing.md -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/releasing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/docs/releasing.md -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/roles.rst.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/docs/roles.rst.template -------------------------------------------------------------------------------- /docs/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/docs/testing.md -------------------------------------------------------------------------------- /galaxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/galaxy.yml -------------------------------------------------------------------------------- /generate_action_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/generate_action_groups.py -------------------------------------------------------------------------------- /meta/bindep.txt: -------------------------------------------------------------------------------- 1 | ../bindep.txt -------------------------------------------------------------------------------- /meta/execution-environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/meta/execution-environment.yml -------------------------------------------------------------------------------- /meta/requirements.txt: -------------------------------------------------------------------------------- 1 | ../requirements.txt -------------------------------------------------------------------------------- /meta/runtime.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/meta/runtime.yml -------------------------------------------------------------------------------- /plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/callback/foreman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/callback/foreman.py -------------------------------------------------------------------------------- /plugins/doc_fragments/foreman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/doc_fragments/foreman.py -------------------------------------------------------------------------------- /plugins/filter/cp_label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/filter/cp_label.yml -------------------------------------------------------------------------------- /plugins/filter/foreman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/filter/foreman.py -------------------------------------------------------------------------------- /plugins/inventory/foreman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/inventory/foreman.py -------------------------------------------------------------------------------- /plugins/module_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/module_utils/_apypie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/module_utils/_apypie.py -------------------------------------------------------------------------------- /plugins/module_utils/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/module_utils/_version.py -------------------------------------------------------------------------------- /plugins/module_utils/foreman_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/module_utils/foreman_helper.py -------------------------------------------------------------------------------- /plugins/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/modules/activation_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/activation_key.py -------------------------------------------------------------------------------- /plugins/modules/architecture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/architecture.py -------------------------------------------------------------------------------- /plugins/modules/auth_source_ldap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/auth_source_ldap.py -------------------------------------------------------------------------------- /plugins/modules/bookmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/bookmark.py -------------------------------------------------------------------------------- /plugins/modules/compute_attribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/compute_attribute.py -------------------------------------------------------------------------------- /plugins/modules/compute_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/compute_profile.py -------------------------------------------------------------------------------- /plugins/modules/compute_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/compute_resource.py -------------------------------------------------------------------------------- /plugins/modules/config_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/config_group.py -------------------------------------------------------------------------------- /plugins/modules/content_credential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/content_credential.py -------------------------------------------------------------------------------- /plugins/modules/content_export_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/content_export_info.py -------------------------------------------------------------------------------- /plugins/modules/content_export_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/content_export_library.py -------------------------------------------------------------------------------- /plugins/modules/content_export_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/content_export_repository.py -------------------------------------------------------------------------------- /plugins/modules/content_export_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/content_export_version.py -------------------------------------------------------------------------------- /plugins/modules/content_import_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/content_import_info.py -------------------------------------------------------------------------------- /plugins/modules/content_import_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/content_import_library.py -------------------------------------------------------------------------------- /plugins/modules/content_import_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/content_import_repository.py -------------------------------------------------------------------------------- /plugins/modules/content_import_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/content_import_version.py -------------------------------------------------------------------------------- /plugins/modules/content_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/content_upload.py -------------------------------------------------------------------------------- /plugins/modules/content_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/content_view.py -------------------------------------------------------------------------------- /plugins/modules/content_view_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/content_view_filter.py -------------------------------------------------------------------------------- /plugins/modules/content_view_filter_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/content_view_filter_info.py -------------------------------------------------------------------------------- /plugins/modules/content_view_filter_rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/content_view_filter_rule.py -------------------------------------------------------------------------------- /plugins/modules/content_view_filter_rule_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/content_view_filter_rule_info.py -------------------------------------------------------------------------------- /plugins/modules/content_view_history_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/content_view_history_info.py -------------------------------------------------------------------------------- /plugins/modules/content_view_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/content_view_info.py -------------------------------------------------------------------------------- /plugins/modules/content_view_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/content_view_version.py -------------------------------------------------------------------------------- /plugins/modules/content_view_version_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/content_view_version_info.py -------------------------------------------------------------------------------- /plugins/modules/discovery_rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/discovery_rule.py -------------------------------------------------------------------------------- /plugins/modules/domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/domain.py -------------------------------------------------------------------------------- /plugins/modules/domain_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/domain_info.py -------------------------------------------------------------------------------- /plugins/modules/external_usergroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/external_usergroup.py -------------------------------------------------------------------------------- /plugins/modules/flatpak_remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/flatpak_remote.py -------------------------------------------------------------------------------- /plugins/modules/flatpak_remote_scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/flatpak_remote_scan.py -------------------------------------------------------------------------------- /plugins/modules/global_parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/global_parameter.py -------------------------------------------------------------------------------- /plugins/modules/hardware_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/hardware_model.py -------------------------------------------------------------------------------- /plugins/modules/host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/host.py -------------------------------------------------------------------------------- /plugins/modules/host_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/host_collection.py -------------------------------------------------------------------------------- /plugins/modules/host_errata_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/host_errata_info.py -------------------------------------------------------------------------------- /plugins/modules/host_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/host_info.py -------------------------------------------------------------------------------- /plugins/modules/host_power.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/host_power.py -------------------------------------------------------------------------------- /plugins/modules/hostgroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/hostgroup.py -------------------------------------------------------------------------------- /plugins/modules/hostgroup_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/hostgroup_info.py -------------------------------------------------------------------------------- /plugins/modules/http_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/http_proxy.py -------------------------------------------------------------------------------- /plugins/modules/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/image.py -------------------------------------------------------------------------------- /plugins/modules/installation_medium.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/installation_medium.py -------------------------------------------------------------------------------- /plugins/modules/job_invocation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/job_invocation.py -------------------------------------------------------------------------------- /plugins/modules/job_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/job_template.py -------------------------------------------------------------------------------- /plugins/modules/lifecycle_environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/lifecycle_environment.py -------------------------------------------------------------------------------- /plugins/modules/location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/location.py -------------------------------------------------------------------------------- /plugins/modules/operatingsystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/operatingsystem.py -------------------------------------------------------------------------------- /plugins/modules/organization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/organization.py -------------------------------------------------------------------------------- /plugins/modules/organization_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/organization_info.py -------------------------------------------------------------------------------- /plugins/modules/os_default_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/os_default_template.py -------------------------------------------------------------------------------- /plugins/modules/partition_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/partition_table.py -------------------------------------------------------------------------------- /plugins/modules/product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/product.py -------------------------------------------------------------------------------- /plugins/modules/provisioning_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/provisioning_template.py -------------------------------------------------------------------------------- /plugins/modules/puppet_environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/puppet_environment.py -------------------------------------------------------------------------------- /plugins/modules/puppetclasses_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/puppetclasses_import.py -------------------------------------------------------------------------------- /plugins/modules/realm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/realm.py -------------------------------------------------------------------------------- /plugins/modules/redhat_manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/redhat_manifest.py -------------------------------------------------------------------------------- /plugins/modules/registration_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/registration_command.py -------------------------------------------------------------------------------- /plugins/modules/repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/repository.py -------------------------------------------------------------------------------- /plugins/modules/repository_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/repository_info.py -------------------------------------------------------------------------------- /plugins/modules/repository_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/repository_set.py -------------------------------------------------------------------------------- /plugins/modules/repository_set_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/repository_set_info.py -------------------------------------------------------------------------------- /plugins/modules/repository_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/repository_sync.py -------------------------------------------------------------------------------- /plugins/modules/resource_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/resource_info.py -------------------------------------------------------------------------------- /plugins/modules/role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/role.py -------------------------------------------------------------------------------- /plugins/modules/scap_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/scap_content.py -------------------------------------------------------------------------------- /plugins/modules/scap_tailoring_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/scap_tailoring_file.py -------------------------------------------------------------------------------- /plugins/modules/scc_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/scc_account.py -------------------------------------------------------------------------------- /plugins/modules/scc_product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/scc_product.py -------------------------------------------------------------------------------- /plugins/modules/setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/setting.py -------------------------------------------------------------------------------- /plugins/modules/setting_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/setting_info.py -------------------------------------------------------------------------------- /plugins/modules/smart_class_parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/smart_class_parameter.py -------------------------------------------------------------------------------- /plugins/modules/smart_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/smart_proxy.py -------------------------------------------------------------------------------- /plugins/modules/snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/snapshot.py -------------------------------------------------------------------------------- /plugins/modules/snapshot_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/snapshot_info.py -------------------------------------------------------------------------------- /plugins/modules/status_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/status_info.py -------------------------------------------------------------------------------- /plugins/modules/subnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/subnet.py -------------------------------------------------------------------------------- /plugins/modules/subnet_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/subnet_info.py -------------------------------------------------------------------------------- /plugins/modules/subscription_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/subscription_info.py -------------------------------------------------------------------------------- /plugins/modules/subscription_manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/subscription_manifest.py -------------------------------------------------------------------------------- /plugins/modules/sync_plan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/sync_plan.py -------------------------------------------------------------------------------- /plugins/modules/templates_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/templates_import.py -------------------------------------------------------------------------------- /plugins/modules/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/user.py -------------------------------------------------------------------------------- /plugins/modules/usergroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/usergroup.py -------------------------------------------------------------------------------- /plugins/modules/wait_for_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/wait_for_task.py -------------------------------------------------------------------------------- /plugins/modules/webhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/plugins/modules/webhook.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | junit_logging = all 3 | -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements-lint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/requirements-lint.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests>=2.4.2 2 | PyYAML 3 | -------------------------------------------------------------------------------- /roles/activation_keys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/activation_keys/README.md -------------------------------------------------------------------------------- /roles/activation_keys/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/activation_keys/meta/main.yml -------------------------------------------------------------------------------- /roles/activation_keys/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/activation_keys/tasks/main.yml -------------------------------------------------------------------------------- /roles/auth_sources_ldap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/auth_sources_ldap/README.md -------------------------------------------------------------------------------- /roles/auth_sources_ldap/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/auth_sources_ldap/meta/main.yml -------------------------------------------------------------------------------- /roles/auth_sources_ldap/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/auth_sources_ldap/tasks/main.yml -------------------------------------------------------------------------------- /roles/compute_profiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/compute_profiles/README.md -------------------------------------------------------------------------------- /roles/compute_profiles/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/compute_profiles/meta/main.yml -------------------------------------------------------------------------------- /roles/compute_profiles/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/compute_profiles/tasks/main.yml -------------------------------------------------------------------------------- /roles/compute_resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/compute_resources/README.md -------------------------------------------------------------------------------- /roles/compute_resources/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/compute_resources/meta/main.yml -------------------------------------------------------------------------------- /roles/compute_resources/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/compute_resources/tasks/main.yml -------------------------------------------------------------------------------- /roles/content_credentials/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/content_credentials/README.md -------------------------------------------------------------------------------- /roles/content_credentials/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/content_credentials/meta/main.yml -------------------------------------------------------------------------------- /roles/content_credentials/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/content_credentials/tasks/main.yml -------------------------------------------------------------------------------- /roles/content_rhel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/content_rhel/README.md -------------------------------------------------------------------------------- /roles/content_rhel/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/content_rhel/defaults/main.yml -------------------------------------------------------------------------------- /roles/content_rhel/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/content_rhel/meta/main.yml -------------------------------------------------------------------------------- /roles/content_rhel/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/content_rhel/tasks/main.yml -------------------------------------------------------------------------------- /roles/content_view_publish/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/content_view_publish/README.md -------------------------------------------------------------------------------- /roles/content_view_publish/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/content_view_publish/meta/main.yml -------------------------------------------------------------------------------- /roles/content_view_publish/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/content_view_publish/tasks/main.yml -------------------------------------------------------------------------------- /roles/content_view_version_cleanup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/content_view_version_cleanup/README.md -------------------------------------------------------------------------------- /roles/content_view_version_cleanup/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/content_view_version_cleanup/meta/main.yml -------------------------------------------------------------------------------- /roles/content_views/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/content_views/README.md -------------------------------------------------------------------------------- /roles/content_views/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/content_views/meta/main.yml -------------------------------------------------------------------------------- /roles/content_views/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/content_views/tasks/main.yml -------------------------------------------------------------------------------- /roles/convert2rhel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/convert2rhel/README.md -------------------------------------------------------------------------------- /roles/convert2rhel/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/convert2rhel/defaults/main.yml -------------------------------------------------------------------------------- /roles/convert2rhel/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/convert2rhel/meta/main.yml -------------------------------------------------------------------------------- /roles/convert2rhel/tasks/activation_keys.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/convert2rhel/tasks/activation_keys.yml -------------------------------------------------------------------------------- /roles/convert2rhel/tasks/content_views.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/convert2rhel/tasks/content_views.yml -------------------------------------------------------------------------------- /roles/convert2rhel/tasks/host_groups.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/convert2rhel/tasks/host_groups.yml -------------------------------------------------------------------------------- /roles/convert2rhel/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/convert2rhel/tasks/main.yml -------------------------------------------------------------------------------- /roles/convert2rhel/tasks/sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/convert2rhel/tasks/sync.yml -------------------------------------------------------------------------------- /roles/domains/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/domains/README.md -------------------------------------------------------------------------------- /roles/domains/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/domains/meta/main.yml -------------------------------------------------------------------------------- /roles/domains/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/domains/tasks/main.yml -------------------------------------------------------------------------------- /roles/hostgroups/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/hostgroups/README.md -------------------------------------------------------------------------------- /roles/hostgroups/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/hostgroups/meta/main.yml -------------------------------------------------------------------------------- /roles/hostgroups/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/hostgroups/tasks/main.yml -------------------------------------------------------------------------------- /roles/lifecycle_environments/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/lifecycle_environments/README.md -------------------------------------------------------------------------------- /roles/lifecycle_environments/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/lifecycle_environments/meta/main.yml -------------------------------------------------------------------------------- /roles/lifecycle_environments/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/lifecycle_environments/tasks/main.yml -------------------------------------------------------------------------------- /roles/locations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/locations/README.md -------------------------------------------------------------------------------- /roles/locations/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/locations/meta/main.yml -------------------------------------------------------------------------------- /roles/locations/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/locations/tasks/main.yml -------------------------------------------------------------------------------- /roles/manifest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/manifest/README.md -------------------------------------------------------------------------------- /roles/manifest/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | foreman_manifest_download: false 3 | -------------------------------------------------------------------------------- /roles/manifest/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/manifest/meta/main.yml -------------------------------------------------------------------------------- /roles/manifest/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/manifest/tasks/main.yml -------------------------------------------------------------------------------- /roles/operatingsystems/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/operatingsystems/README.md -------------------------------------------------------------------------------- /roles/operatingsystems/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/operatingsystems/meta/main.yml -------------------------------------------------------------------------------- /roles/operatingsystems/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/operatingsystems/tasks/main.yml -------------------------------------------------------------------------------- /roles/organizations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/organizations/README.md -------------------------------------------------------------------------------- /roles/organizations/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/organizations/meta/main.yml -------------------------------------------------------------------------------- /roles/organizations/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/organizations/tasks/main.yml -------------------------------------------------------------------------------- /roles/provisioning_templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/provisioning_templates/README.md -------------------------------------------------------------------------------- /roles/provisioning_templates/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/provisioning_templates/meta/main.yml -------------------------------------------------------------------------------- /roles/provisioning_templates/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/provisioning_templates/tasks/main.yml -------------------------------------------------------------------------------- /roles/repositories/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/repositories/README.md -------------------------------------------------------------------------------- /roles/repositories/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/repositories/meta/main.yml -------------------------------------------------------------------------------- /roles/repositories/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/repositories/tasks/main.yml -------------------------------------------------------------------------------- /roles/settings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/settings/README.md -------------------------------------------------------------------------------- /roles/settings/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | description: Manage Settings 4 | standalone: false 5 | -------------------------------------------------------------------------------- /roles/settings/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/settings/tasks/main.yml -------------------------------------------------------------------------------- /roles/subnets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/subnets/README.md -------------------------------------------------------------------------------- /roles/subnets/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/subnets/meta/main.yml -------------------------------------------------------------------------------- /roles/subnets/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/subnets/tasks/main.yml -------------------------------------------------------------------------------- /roles/sync_plans/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/sync_plans/README.md -------------------------------------------------------------------------------- /roles/sync_plans/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/sync_plans/meta/main.yml -------------------------------------------------------------------------------- /roles/sync_plans/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/roles/sync_plans/tasks/main.yml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/callback/three_hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/callback/three_hosts -------------------------------------------------------------------------------- /tests/callback/three_hosts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/callback/three_hosts.yml -------------------------------------------------------------------------------- /tests/callback/vault-pass: -------------------------------------------------------------------------------- 1 | changeme 2 | -------------------------------------------------------------------------------- /tests/config.yml: -------------------------------------------------------------------------------- 1 | --- 2 | modules: 3 | python_requires: ">=3.6" 4 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/fixtures/apidoc/activation_key.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/activation_keys_role.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/architecture.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/auth_source_ldap.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/auth_sources_ldap_role.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/bookmark.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/compute_attribute.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/compute_profile.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/compute_profile_ovirt.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/compute_profiles_role.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/compute_resource.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/compute_resources_role.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/config_group.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/content_credential.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/content_credentials_role.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/content_export_info.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/content_export_library.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/content_export_repository.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/content_export_version.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/content_import_info.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/content_import_library.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/content_import_repository.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/content_import_version.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/content_rhel_role.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/content_upload.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/content_upload_deb.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/content_upload_ostree.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/content_view.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/content_view_filter.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/content_view_filter_deb.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/content_view_filter_info.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/content_view_filter_info_deb.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/content_view_filter_rule.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/content_view_filter_rule_deb.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/content_view_filter_rule_info.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/content_view_filter_rule_info_deb.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/content_view_history_info.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/content_view_info.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/content_view_publish_role.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/content_view_version.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/content_view_version_cleanup_role.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/content_view_version_info.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/content_views_role.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/convert2rhel.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/discovery_rule.json: -------------------------------------------------------------------------------- 1 | luna.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/domain.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/domain_info.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/domains_role.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/external_usergroup.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/filters.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/apidoc/flatpak_remote.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/flatpak_remote_repository_mirror.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/flatpak_remote_scan.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/foreman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/fixtures/apidoc/foreman.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/global_parameter.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/hardware_model.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/host.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/host_collection.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/host_errata_info.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/host_info.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/host_interface_attributes.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/host_power.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/hostgroup.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/hostgroup_info.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/hostgroups_role.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/http_proxy.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/image.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/installation_medium.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/inventory_plugin.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/apidoc/inventory_plugin_ansible.json: -------------------------------------------------------------------------------- 1 | inventory_plugin.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/job_invocation.json: -------------------------------------------------------------------------------- 1 | luna.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/job_template.json: -------------------------------------------------------------------------------- 1 | luna.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/katello.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/fixtures/apidoc/katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/katello_hostgroup.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/katello_smart_proxy.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/lifecycle_environment.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/lifecycle_environments_role.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/location.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/locations_role.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/luna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/fixtures/apidoc/luna.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/luna_hostgroup.json: -------------------------------------------------------------------------------- 1 | luna.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/manifest_role.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/module_defaults.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/operatingsystem.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/operatingsystems_role.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/organization.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/organization_info.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/organizations_role.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/os_default_template.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/partition_table.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/product.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/provisioning_template.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/provisioning_templates_role.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/puppet_environment.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/puppetclasses_import.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/realm.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/redhat_manifest.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/registration_command.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/repositories_role.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/repositories_role_deb.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/repository.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/repository_deb.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/repository_info.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/repository_ostree.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/repository_set.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/repository_set_info.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/repository_sync.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/resource_info.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/role.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/scap_content.json: -------------------------------------------------------------------------------- 1 | luna.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/scap_tailoring_file.json: -------------------------------------------------------------------------------- 1 | luna.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/scc_account.json: -------------------------------------------------------------------------------- 1 | scc_manager.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/scc_manager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/fixtures/apidoc/scc_manager.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/scc_product.json: -------------------------------------------------------------------------------- 1 | scc_manager.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/scc_product_old.json: -------------------------------------------------------------------------------- 1 | scc_manager.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/setting.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/setting_info.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/settings_role.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/smart_class_parameter.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/smart_class_parameter_override_value.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/smart_proxy.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/fixtures/apidoc/snapshot.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/snapshot_info.json: -------------------------------------------------------------------------------- 1 | snapshot.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/status_info.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/subnet.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/subnet_info.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/subnets_role.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/subscription_info.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/subscription_manifest.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/sync_plan.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/sync_plans_role.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/templates_import.json: -------------------------------------------------------------------------------- 1 | luna.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/user.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/usergroup.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/wait_for_task.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /tests/fixtures/apidoc/webhook.json: -------------------------------------------------------------------------------- 1 | luna.json -------------------------------------------------------------------------------- /tests/galaxy-importer.cfg: -------------------------------------------------------------------------------- 1 | [galaxy-importer] 2 | CHECK_REQUIRED_TAGS = True 3 | -------------------------------------------------------------------------------- /tests/inventory/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/inventory/hosts -------------------------------------------------------------------------------- /tests/inventory/inventory_plugin.foreman.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/inventory/inventory_plugin.foreman.yml -------------------------------------------------------------------------------- /tests/test_callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_callback.py -------------------------------------------------------------------------------- /tests/test_crud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_crud.py -------------------------------------------------------------------------------- /tests/test_foreman_spec_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_foreman_spec_helper.py -------------------------------------------------------------------------------- /tests/test_module_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_module_state.py -------------------------------------------------------------------------------- /tests/test_playbooks/activation_key.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/activation_key.yml -------------------------------------------------------------------------------- /tests/test_playbooks/activation_keys_role.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/activation_keys_role.yml -------------------------------------------------------------------------------- /tests/test_playbooks/architecture.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/architecture.yml -------------------------------------------------------------------------------- /tests/test_playbooks/auth_source_ldap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/auth_source_ldap.yml -------------------------------------------------------------------------------- /tests/test_playbooks/bookmark.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/bookmark.yml -------------------------------------------------------------------------------- /tests/test_playbooks/compute_attribute.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/compute_attribute.yml -------------------------------------------------------------------------------- /tests/test_playbooks/compute_profile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/compute_profile.yml -------------------------------------------------------------------------------- /tests/test_playbooks/compute_profile_ovirt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/compute_profile_ovirt.yml -------------------------------------------------------------------------------- /tests/test_playbooks/compute_profiles_role.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/compute_profiles_role.yml -------------------------------------------------------------------------------- /tests/test_playbooks/compute_resource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/compute_resource.yml -------------------------------------------------------------------------------- /tests/test_playbooks/config_group.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/config_group.yml -------------------------------------------------------------------------------- /tests/test_playbooks/content_credential.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/content_credential.yml -------------------------------------------------------------------------------- /tests/test_playbooks/content_export_info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/content_export_info.yml -------------------------------------------------------------------------------- /tests/test_playbooks/content_import_info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/content_import_info.yml -------------------------------------------------------------------------------- /tests/test_playbooks/content_rhel_role.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/content_rhel_role.yml -------------------------------------------------------------------------------- /tests/test_playbooks/content_upload.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/content_upload.yml -------------------------------------------------------------------------------- /tests/test_playbooks/content_upload_deb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/content_upload_deb.yml -------------------------------------------------------------------------------- /tests/test_playbooks/content_upload_ostree.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/content_upload_ostree.yml -------------------------------------------------------------------------------- /tests/test_playbooks/content_view.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/content_view.yml -------------------------------------------------------------------------------- /tests/test_playbooks/content_view_filter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/content_view_filter.yml -------------------------------------------------------------------------------- /tests/test_playbooks/content_view_info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/content_view_info.yml -------------------------------------------------------------------------------- /tests/test_playbooks/content_view_version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/content_view_version.yml -------------------------------------------------------------------------------- /tests/test_playbooks/content_views_role.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/content_views_role.yml -------------------------------------------------------------------------------- /tests/test_playbooks/convert2rhel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/convert2rhel.yml -------------------------------------------------------------------------------- /tests/test_playbooks/data/RPM-GPG-KEY-foreman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/data/RPM-GPG-KEY-foreman -------------------------------------------------------------------------------- /tests/test_playbooks/data/ansible_hello.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/data/ansible_hello.erb -------------------------------------------------------------------------------- /tests/test_playbooks/data/content-import.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/data/content-import.tgz -------------------------------------------------------------------------------- /tests/test_playbooks/data/delete_file.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/data/delete_file.erb -------------------------------------------------------------------------------- /tests/test_playbooks/data/file_repo_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/data/file_repo_test.txt -------------------------------------------------------------------------------- /tests/test_playbooks/data/gpg_key.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/data/gpg_key.asc -------------------------------------------------------------------------------- /tests/test_playbooks/data/gpg_key2.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/data/gpg_key2.asc -------------------------------------------------------------------------------- /tests/test_playbooks/data/large_file_repo.iso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/data/large_file_repo.iso -------------------------------------------------------------------------------- /tests/test_playbooks/data/odin_1.0_ppc64.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/data/odin_1.0_ppc64.deb -------------------------------------------------------------------------------- /tests/test_playbooks/data/ssg-firefox-ds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/data/ssg-firefox-ds.xml -------------------------------------------------------------------------------- /tests/test_playbooks/discovery_rule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/discovery_rule.yml -------------------------------------------------------------------------------- /tests/test_playbooks/domain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/domain.yml -------------------------------------------------------------------------------- /tests/test_playbooks/domain_info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/domain_info.yml -------------------------------------------------------------------------------- /tests/test_playbooks/domains_role.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/domains_role.yml -------------------------------------------------------------------------------- /tests/test_playbooks/external_usergroup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/external_usergroup.yml -------------------------------------------------------------------------------- /tests/test_playbooks/filters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/filters.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/bookmark-0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/bookmark-0.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/bookmark-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/bookmark-1.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/bookmark-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/bookmark-2.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/bookmark-3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/bookmark-3.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/bookmark-4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/bookmark-4.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/bookmark-5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/bookmark-5.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/bookmark-6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/bookmark-6.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/domain-0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/domain-0.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/domain-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/domain-1.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/domain-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/domain-10.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/domain-11.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/domain-11.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/domain-12.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/domain-12.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/domain-13.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/domain-13.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/domain-14.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/domain-14.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/domain-15.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/domain-15.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/domain-16.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/domain-16.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/domain-17.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/domain-17.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/domain-18.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/domain-18.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/domain-19.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/domain-19.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/domain-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/domain-2.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/domain-3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/domain-3.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/domain-4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/domain-4.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/domain-5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/domain-5.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/domain-6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/domain-6.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/domain-7.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/domain-7.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/domain-8.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/domain-8.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/domain-9.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/domain-9.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/host-0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/host-0.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/host-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/host-1.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/host-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/host-10.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/host-11.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/host-11.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/host-12.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/host-12.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/host-13.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/host-13.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/host-14.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/host-14.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/host-15.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/host-15.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/host-16.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/host-16.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/host-17.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/host-17.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/host-18.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/host-18.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/host-19.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/host-19.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/host-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/host-2.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/host-20.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/host-20.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/host-21.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/host-21.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/host-22.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/host-22.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/host-23.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/host-23.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/host-24.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/host-24.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/host-25.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/host-25.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/host-26.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/host-26.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/host-27.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/host-27.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/host-28.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/host-28.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/host-29.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/host-29.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/host-3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/host-3.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/host-30.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/host-30.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/host-31.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/host-31.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/host-32.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/host-32.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/host-33.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/host-33.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/host-34.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/host-34.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/host-35.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/host-35.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/host-36.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/host-36.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/host-37.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/host-37.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/host-38.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/host-38.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/host-4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/host-4.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/host-5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/host-5.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/host-6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/host-6.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/host-7.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/host-7.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/host-8.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/host-8.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/host-9.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/host-9.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/host_info-0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/host_info-0.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/host_info-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/host_info-1.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/host_power-0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/host_power-0.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/host_power-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/host_power-1.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/host_power-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/host_power-2.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/host_power-3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/host_power-3.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/host_power-4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/host_power-4.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/host_power-5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/host_power-5.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/host_power-6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/host_power-6.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/host_power-7.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/host_power-7.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/hostgroup-0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/hostgroup-0.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/hostgroup-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/hostgroup-1.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/hostgroup-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/hostgroup-10.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/hostgroup-11.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/hostgroup-11.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/hostgroup-12.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/hostgroup-12.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/hostgroup-13.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/hostgroup-13.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/hostgroup-14.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/hostgroup-14.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/hostgroup-15.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/hostgroup-15.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/hostgroup-16.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/hostgroup-16.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/hostgroup-17.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/hostgroup-17.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/hostgroup-18.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/hostgroup-18.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/hostgroup-19.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/hostgroup-19.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/hostgroup-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/hostgroup-2.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/hostgroup-20.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/hostgroup-20.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/hostgroup-21.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/hostgroup-21.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/hostgroup-22.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/hostgroup-22.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/hostgroup-23.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/hostgroup-23.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/hostgroup-24.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/hostgroup-24.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/hostgroup-25.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/hostgroup-25.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/hostgroup-26.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/hostgroup-26.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/hostgroup-27.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/hostgroup-27.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/hostgroup-28.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/hostgroup-28.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/hostgroup-29.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/hostgroup-29.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/hostgroup-3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/hostgroup-3.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/hostgroup-30.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/hostgroup-30.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/hostgroup-31.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/hostgroup-31.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/hostgroup-32.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/hostgroup-32.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/hostgroup-33.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/hostgroup-33.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/hostgroup-4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/hostgroup-4.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/hostgroup-5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/hostgroup-5.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/hostgroup-6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/hostgroup-6.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/hostgroup-7.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/hostgroup-7.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/hostgroup-8.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/hostgroup-8.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/hostgroup-9.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/hostgroup-9.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/http_proxy-0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/http_proxy-0.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/http_proxy-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/http_proxy-1.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/http_proxy-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/http_proxy-2.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/http_proxy-3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/http_proxy-3.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/http_proxy-4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/http_proxy-4.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/http_proxy-5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/http_proxy-5.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/http_proxy-6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/http_proxy-6.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/http_proxy-7.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/http_proxy-7.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/http_proxy-8.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/http_proxy-8.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/http_proxy-9.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/http_proxy-9.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/image-0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/image-0.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/image-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/image-1.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/image-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/image-2.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/image-3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/image-3.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/image-4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/image-4.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/image-5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/image-5.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/image-6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/image-6.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/image-7.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/image-7.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/location-0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/location-0.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/location-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/location-1.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/location-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/location-10.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/location-11.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/location-11.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/location-12.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/location-12.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/location-13.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/location-13.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/location-14.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/location-14.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/location-15.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/location-15.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/location-16.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/location-16.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/location-17.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/location-17.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/location-18.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/location-18.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/location-19.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/location-19.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/location-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/location-2.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/location-20.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/location-20.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/location-21.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/location-21.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/location-22.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/location-22.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/location-23.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/location-23.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/location-24.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/location-24.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/location-25.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/location-25.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/location-26.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/location-26.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/location-27.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/location-27.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/location-3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/location-3.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/location-4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/location-4.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/location-5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/location-5.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/location-6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/location-6.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/location-7.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/location-7.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/location-8.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/location-8.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/location-9.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/location-9.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/product-0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/product-0.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/product-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/product-1.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/product-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/product-10.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/product-11.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/product-11.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/product-12.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/product-12.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/product-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/product-2.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/product-3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/product-3.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/product-4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/product-4.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/product-5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/product-5.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/product-6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/product-6.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/product-7.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/product-7.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/product-8.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/product-8.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/product-9.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/product-9.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/realm-0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/realm-0.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/realm-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/realm-1.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/realm-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/realm-2.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/realm-3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/realm-3.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/repository-0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/repository-0.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/repository-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/repository-1.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/repository-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/repository-2.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/repository-3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/repository-3.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/repository-4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/repository-4.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/repository-5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/repository-5.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/repository-6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/repository-6.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/repository-7.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/repository-7.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/repository-8.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/repository-8.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/repository-9.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/repository-9.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/role-0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/role-0.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/role-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/role-1.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/role-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/role-10.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/role-11.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/role-11.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/role-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/role-2.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/role-3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/role-3.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/role-4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/role-4.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/role-5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/role-5.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/role-6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/role-6.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/role-7.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/role-7.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/role-8.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/role-8.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/role-9.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/role-9.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/setting-0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/setting-0.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/setting-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/setting-1.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/setting-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/setting-2.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/setting-3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/setting-3.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/setting-4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/setting-4.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/setting-5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/setting-5.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/setting-6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/setting-6.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/setting-7.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/setting-7.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/setting-8.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/setting-8.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/setting-9.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/setting-9.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/snapshot-0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/snapshot-0.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/snapshot-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/snapshot-1.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/snapshot-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/snapshot-2.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/snapshot-3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/snapshot-3.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/snapshot-4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/snapshot-4.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/snapshot-5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/snapshot-5.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/snapshot-6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/snapshot-6.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/subnet-0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/subnet-0.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/subnet-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/subnet-1.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/subnet-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/subnet-10.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/subnet-11.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/subnet-11.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/subnet-12.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/subnet-12.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/subnet-13.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/subnet-13.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/subnet-14.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/subnet-14.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/subnet-15.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/subnet-15.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/subnet-16.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/subnet-16.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/subnet-17.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/subnet-17.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/subnet-18.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/subnet-18.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/subnet-19.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/subnet-19.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/subnet-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/subnet-2.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/subnet-20.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/subnet-20.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/subnet-21.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/subnet-21.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/subnet-22.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/subnet-22.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/subnet-23.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/subnet-23.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/subnet-24.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/subnet-24.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/subnet-3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/subnet-3.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/subnet-4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/subnet-4.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/subnet-5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/subnet-5.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/subnet-6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/subnet-6.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/subnet-7.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/subnet-7.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/subnet-8.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/subnet-8.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/subnet-9.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/subnet-9.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/sync_plan-0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/sync_plan-0.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/sync_plan-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/sync_plan-1.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/sync_plan-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/sync_plan-2.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/sync_plan-3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/sync_plan-3.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/sync_plan-4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/sync_plan-4.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/sync_plan-5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/sync_plan-5.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/sync_plan-6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/sync_plan-6.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/sync_plan-7.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/sync_plan-7.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/sync_plan-8.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/sync_plan-8.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/user-0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/user-0.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/user-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/user-1.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/user-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/user-2.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/user-3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/user-3.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/user-4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/user-4.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/user-5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/user-5.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/user-6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/user-6.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/user-7.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/user-7.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/usergroup-0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/usergroup-0.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/usergroup-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/usergroup-1.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/usergroup-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/usergroup-10.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/usergroup-11.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/usergroup-11.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/usergroup-12.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/usergroup-12.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/usergroup-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/usergroup-2.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/usergroup-3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/usergroup-3.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/usergroup-4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/usergroup-4.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/usergroup-5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/usergroup-5.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/usergroup-6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/usergroup-6.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/usergroup-7.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/usergroup-7.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/usergroup-8.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/usergroup-8.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/usergroup-9.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/usergroup-9.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/webhook-0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/webhook-0.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/webhook-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/webhook-1.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/webhook-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/webhook-2.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/webhook-3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/webhook-3.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/webhook-4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/webhook-4.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/webhook-5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/webhook-5.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/webhook-6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/webhook-6.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/webhook-7.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/webhook-7.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/webhook-8.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/webhook-8.yml -------------------------------------------------------------------------------- /tests/test_playbooks/fixtures/webhook-9.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/fixtures/webhook-9.yml -------------------------------------------------------------------------------- /tests/test_playbooks/flatpak_remote.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/flatpak_remote.yml -------------------------------------------------------------------------------- /tests/test_playbooks/flatpak_remote_scan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/flatpak_remote_scan.yml -------------------------------------------------------------------------------- /tests/test_playbooks/global_parameter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/global_parameter.yml -------------------------------------------------------------------------------- /tests/test_playbooks/hardware_model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/hardware_model.yml -------------------------------------------------------------------------------- /tests/test_playbooks/host.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/host.yml -------------------------------------------------------------------------------- /tests/test_playbooks/host_collection.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/host_collection.yml -------------------------------------------------------------------------------- /tests/test_playbooks/host_errata_info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/host_errata_info.yml -------------------------------------------------------------------------------- /tests/test_playbooks/host_info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/host_info.yml -------------------------------------------------------------------------------- /tests/test_playbooks/host_power.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/host_power.yml -------------------------------------------------------------------------------- /tests/test_playbooks/hostgroup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/hostgroup.yml -------------------------------------------------------------------------------- /tests/test_playbooks/hostgroup_info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/hostgroup_info.yml -------------------------------------------------------------------------------- /tests/test_playbooks/hostgroups_role.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/hostgroups_role.yml -------------------------------------------------------------------------------- /tests/test_playbooks/http_proxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/http_proxy.yml -------------------------------------------------------------------------------- /tests/test_playbooks/image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/image.yml -------------------------------------------------------------------------------- /tests/test_playbooks/installation_medium.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/installation_medium.yml -------------------------------------------------------------------------------- /tests/test_playbooks/inventory_plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/inventory_plugin.yml -------------------------------------------------------------------------------- /tests/test_playbooks/job_invocation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/job_invocation.yml -------------------------------------------------------------------------------- /tests/test_playbooks/job_template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/job_template.yml -------------------------------------------------------------------------------- /tests/test_playbooks/katello_hostgroup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/katello_hostgroup.yml -------------------------------------------------------------------------------- /tests/test_playbooks/katello_smart_proxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/katello_smart_proxy.yml -------------------------------------------------------------------------------- /tests/test_playbooks/lifecycle_environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/lifecycle_environment.yml -------------------------------------------------------------------------------- /tests/test_playbooks/location.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/location.yml -------------------------------------------------------------------------------- /tests/test_playbooks/locations_role.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/locations_role.yml -------------------------------------------------------------------------------- /tests/test_playbooks/luna_hostgroup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/luna_hostgroup.yml -------------------------------------------------------------------------------- /tests/test_playbooks/manifest_role.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/manifest_role.yml -------------------------------------------------------------------------------- /tests/test_playbooks/module_defaults.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/module_defaults.yml -------------------------------------------------------------------------------- /tests/test_playbooks/operatingsystem.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/operatingsystem.yml -------------------------------------------------------------------------------- /tests/test_playbooks/operatingsystems_role.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/operatingsystems_role.yml -------------------------------------------------------------------------------- /tests/test_playbooks/organization.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/organization.yml -------------------------------------------------------------------------------- /tests/test_playbooks/organization_info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/organization_info.yml -------------------------------------------------------------------------------- /tests/test_playbooks/organizations_role.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/organizations_role.yml -------------------------------------------------------------------------------- /tests/test_playbooks/os_default_template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/os_default_template.yml -------------------------------------------------------------------------------- /tests/test_playbooks/partition_table.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/partition_table.yml -------------------------------------------------------------------------------- /tests/test_playbooks/product.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/product.yml -------------------------------------------------------------------------------- /tests/test_playbooks/provisioning_template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/provisioning_template.yml -------------------------------------------------------------------------------- /tests/test_playbooks/puppet_environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/puppet_environment.yml -------------------------------------------------------------------------------- /tests/test_playbooks/puppetclasses_import.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/puppetclasses_import.yml -------------------------------------------------------------------------------- /tests/test_playbooks/realm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/realm.yml -------------------------------------------------------------------------------- /tests/test_playbooks/redhat_manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/redhat_manifest.yml -------------------------------------------------------------------------------- /tests/test_playbooks/registration_command.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/registration_command.yml -------------------------------------------------------------------------------- /tests/test_playbooks/repositories_role.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/repositories_role.yml -------------------------------------------------------------------------------- /tests/test_playbooks/repositories_role_deb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/repositories_role_deb.yml -------------------------------------------------------------------------------- /tests/test_playbooks/repository.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/repository.yml -------------------------------------------------------------------------------- /tests/test_playbooks/repository_deb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/repository_deb.yml -------------------------------------------------------------------------------- /tests/test_playbooks/repository_info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/repository_info.yml -------------------------------------------------------------------------------- /tests/test_playbooks/repository_ostree.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/repository_ostree.yml -------------------------------------------------------------------------------- /tests/test_playbooks/repository_set.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/repository_set.yml -------------------------------------------------------------------------------- /tests/test_playbooks/repository_set_info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/repository_set_info.yml -------------------------------------------------------------------------------- /tests/test_playbooks/repository_sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/repository_sync.yml -------------------------------------------------------------------------------- /tests/test_playbooks/resource_info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/resource_info.yml -------------------------------------------------------------------------------- /tests/test_playbooks/role.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/role.yml -------------------------------------------------------------------------------- /tests/test_playbooks/scap_content.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/scap_content.yml -------------------------------------------------------------------------------- /tests/test_playbooks/scap_tailoring_file.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/scap_tailoring_file.yml -------------------------------------------------------------------------------- /tests/test_playbooks/scc_account.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/scc_account.yml -------------------------------------------------------------------------------- /tests/test_playbooks/scc_product.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/scc_product.yml -------------------------------------------------------------------------------- /tests/test_playbooks/scc_product_old.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/scc_product_old.yml -------------------------------------------------------------------------------- /tests/test_playbooks/setting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/setting.yml -------------------------------------------------------------------------------- /tests/test_playbooks/setting_info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/setting_info.yml -------------------------------------------------------------------------------- /tests/test_playbooks/settings_role.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/settings_role.yml -------------------------------------------------------------------------------- /tests/test_playbooks/smart_class_parameter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/smart_class_parameter.yml -------------------------------------------------------------------------------- /tests/test_playbooks/smart_proxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/smart_proxy.yml -------------------------------------------------------------------------------- /tests/test_playbooks/snapshot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/snapshot.yml -------------------------------------------------------------------------------- /tests/test_playbooks/snapshot_info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/snapshot_info.yml -------------------------------------------------------------------------------- /tests/test_playbooks/status_info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/status_info.yml -------------------------------------------------------------------------------- /tests/test_playbooks/subnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/subnet.yml -------------------------------------------------------------------------------- /tests/test_playbooks/subnet_info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/subnet_info.yml -------------------------------------------------------------------------------- /tests/test_playbooks/subnets_role.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/subnets_role.yml -------------------------------------------------------------------------------- /tests/test_playbooks/subscription_info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/subscription_info.yml -------------------------------------------------------------------------------- /tests/test_playbooks/subscription_manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/subscription_manifest.yml -------------------------------------------------------------------------------- /tests/test_playbooks/sync_plan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/sync_plan.yml -------------------------------------------------------------------------------- /tests/test_playbooks/sync_plans_role.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/sync_plans_role.yml -------------------------------------------------------------------------------- /tests/test_playbooks/tasks/_assert_diff.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/tasks/_assert_diff.yml -------------------------------------------------------------------------------- /tests/test_playbooks/tasks/activation_key.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/tasks/activation_key.yml -------------------------------------------------------------------------------- /tests/test_playbooks/tasks/architecture.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/tasks/architecture.yml -------------------------------------------------------------------------------- /tests/test_playbooks/tasks/bookmark.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/tasks/bookmark.yml -------------------------------------------------------------------------------- /tests/test_playbooks/tasks/compute_profile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/tasks/compute_profile.yml -------------------------------------------------------------------------------- /tests/test_playbooks/tasks/config_group.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/tasks/config_group.yml -------------------------------------------------------------------------------- /tests/test_playbooks/tasks/content_import.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/tasks/content_import.yml -------------------------------------------------------------------------------- /tests/test_playbooks/tasks/content_view.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/tasks/content_view.yml -------------------------------------------------------------------------------- /tests/test_playbooks/tasks/discovery_rule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/tasks/discovery_rule.yml -------------------------------------------------------------------------------- /tests/test_playbooks/tasks/domain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/tasks/domain.yml -------------------------------------------------------------------------------- /tests/test_playbooks/tasks/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/tasks/environment.yml -------------------------------------------------------------------------------- /tests/test_playbooks/tasks/flatpak_remote.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/tasks/flatpak_remote.yml -------------------------------------------------------------------------------- /tests/test_playbooks/tasks/host.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/tasks/host.yml -------------------------------------------------------------------------------- /tests/test_playbooks/tasks/host_collection.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/tasks/host_collection.yml -------------------------------------------------------------------------------- /tests/test_playbooks/tasks/host_power.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/tasks/host_power.yml -------------------------------------------------------------------------------- /tests/test_playbooks/tasks/hostgroup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/tasks/hostgroup.yml -------------------------------------------------------------------------------- /tests/test_playbooks/tasks/http_proxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/tasks/http_proxy.yml -------------------------------------------------------------------------------- /tests/test_playbooks/tasks/image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/tasks/image.yml -------------------------------------------------------------------------------- /tests/test_playbooks/tasks/job_template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/tasks/job_template.yml -------------------------------------------------------------------------------- /tests/test_playbooks/tasks/katello_sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/tasks/katello_sync.yml -------------------------------------------------------------------------------- /tests/test_playbooks/tasks/location.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/tasks/location.yml -------------------------------------------------------------------------------- /tests/test_playbooks/tasks/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/tasks/model.yml -------------------------------------------------------------------------------- /tests/test_playbooks/tasks/operatingsystem.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/tasks/operatingsystem.yml -------------------------------------------------------------------------------- /tests/test_playbooks/tasks/organization.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/tasks/organization.yml -------------------------------------------------------------------------------- /tests/test_playbooks/tasks/product.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/tasks/product.yml -------------------------------------------------------------------------------- /tests/test_playbooks/tasks/ptable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/tasks/ptable.yml -------------------------------------------------------------------------------- /tests/test_playbooks/tasks/realm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/tasks/realm.yml -------------------------------------------------------------------------------- /tests/test_playbooks/tasks/redhat_manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/tasks/redhat_manifest.yml -------------------------------------------------------------------------------- /tests/test_playbooks/tasks/repository.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/tasks/repository.yml -------------------------------------------------------------------------------- /tests/test_playbooks/tasks/repository_set.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/tasks/repository_set.yml -------------------------------------------------------------------------------- /tests/test_playbooks/tasks/resource_info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/tasks/resource_info.yml -------------------------------------------------------------------------------- /tests/test_playbooks/tasks/role.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/tasks/role.yml -------------------------------------------------------------------------------- /tests/test_playbooks/tasks/scap_content.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/tasks/scap_content.yml -------------------------------------------------------------------------------- /tests/test_playbooks/tasks/scc_account.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/tasks/scc_account.yml -------------------------------------------------------------------------------- /tests/test_playbooks/tasks/scc_product.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/tasks/scc_product.yml -------------------------------------------------------------------------------- /tests/test_playbooks/tasks/setting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/tasks/setting.yml -------------------------------------------------------------------------------- /tests/test_playbooks/tasks/setting_fact.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/tasks/setting_fact.yml -------------------------------------------------------------------------------- /tests/test_playbooks/tasks/smart_proxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/tasks/smart_proxy.yml -------------------------------------------------------------------------------- /tests/test_playbooks/tasks/snapshot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/tasks/snapshot.yml -------------------------------------------------------------------------------- /tests/test_playbooks/tasks/status_info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/tasks/status_info.yml -------------------------------------------------------------------------------- /tests/test_playbooks/tasks/subnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/tasks/subnet.yml -------------------------------------------------------------------------------- /tests/test_playbooks/tasks/sync_plan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/tasks/sync_plan.yml -------------------------------------------------------------------------------- /tests/test_playbooks/tasks/upload.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/tasks/upload.yml -------------------------------------------------------------------------------- /tests/test_playbooks/tasks/user.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/tasks/user.yml -------------------------------------------------------------------------------- /tests/test_playbooks/tasks/usergroup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/tasks/usergroup.yml -------------------------------------------------------------------------------- /tests/test_playbooks/tasks/wait_for_task.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/tasks/wait_for_task.yml -------------------------------------------------------------------------------- /tests/test_playbooks/tasks/webhook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/tasks/webhook.yml -------------------------------------------------------------------------------- /tests/test_playbooks/templates_import.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/templates_import.yml -------------------------------------------------------------------------------- /tests/test_playbooks/user.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/user.yml -------------------------------------------------------------------------------- /tests/test_playbooks/usergroup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/usergroup.yml -------------------------------------------------------------------------------- /tests/test_playbooks/vars/compute_profile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/vars/compute_profile.yml -------------------------------------------------------------------------------- /tests/test_playbooks/vars/domain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/vars/domain.yml -------------------------------------------------------------------------------- /tests/test_playbooks/vars/host.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/vars/host.yml -------------------------------------------------------------------------------- /tests/test_playbooks/vars/hostgroup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/vars/hostgroup.yml -------------------------------------------------------------------------------- /tests/test_playbooks/vars/inventory.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/vars/inventory.yml -------------------------------------------------------------------------------- /tests/test_playbooks/vars/resource_info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/vars/resource_info.yml -------------------------------------------------------------------------------- /tests/test_playbooks/vars/server.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/vars/server.yml.example -------------------------------------------------------------------------------- /tests/test_playbooks/vars/subnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/vars/subnet.yml -------------------------------------------------------------------------------- /tests/test_playbooks/vars/templates_import.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/vars/templates_import.yml -------------------------------------------------------------------------------- /tests/test_playbooks/vars/usergroup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/vars/usergroup.yml -------------------------------------------------------------------------------- /tests/test_playbooks/wait_for_task.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/wait_for_task.yml -------------------------------------------------------------------------------- /tests/test_playbooks/webhook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/test_playbooks/webhook.yml -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/utils.py -------------------------------------------------------------------------------- /tests/vcr_python_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/tests/vcr_python_wrapper.py -------------------------------------------------------------------------------- /vendor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-ansible-modules/HEAD/vendor.py --------------------------------------------------------------------------------