├── .fixtures.yml ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .pmtignore ├── .puppet-lint.rc ├── .sync.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gemfile ├── HISTORY.md ├── LICENSE ├── README.md ├── Rakefile ├── files ├── _assets.conf.erb └── settings-reverse-proxy-headers.yaml ├── lib ├── facter │ ├── dynflow.rb │ ├── sssd.rb │ └── util │ │ └── sssd.rb ├── puppet │ ├── feature │ │ ├── json.rb │ │ └── oauth.rb │ ├── functions │ │ └── foreman │ │ │ ├── enc.rb │ │ │ ├── foreman.rb │ │ │ ├── smartvar.rb │ │ │ └── to_symbolized_yaml.rb │ ├── provider │ │ ├── foreman_config_entry │ │ │ └── cli.rb │ │ ├── foreman_global_parameter │ │ │ └── rest_v3.rb │ │ ├── foreman_host │ │ │ └── rest_v3.rb │ │ ├── foreman_hostgroup │ │ │ └── rest_v3.rb │ │ ├── foreman_instance_host │ │ │ └── rest_v3.rb │ │ ├── foreman_resource │ │ │ └── rest_v3.rb │ │ ├── foreman_smartproxy │ │ │ └── rest_v3.rb │ │ └── foreman_smartproxy_host │ │ │ └── rest_v3.rb │ └── type │ │ ├── foreman_config_entry.rb │ │ ├── foreman_global_parameter.rb │ │ ├── foreman_host.rb │ │ ├── foreman_hostgroup.rb │ │ ├── foreman_instance_host.rb │ │ ├── foreman_resource.rb │ │ ├── foreman_smartproxy.rb │ │ └── foreman_smartproxy_host.rb └── puppet_x │ └── foreman │ └── common.rb ├── manifests ├── cli.pp ├── cli │ ├── ansible.pp │ ├── azure.pp │ ├── bootdisk.pp │ ├── discovery.pp │ ├── globals.pp │ ├── google.pp │ ├── katello.pp │ ├── kubevirt.pp │ ├── openscap.pp │ ├── params.pp │ ├── plugin.pp │ ├── puppet.pp │ ├── remote_execution.pp │ ├── resource_quota.pp │ ├── rh_cloud.pp │ ├── salt.pp │ ├── scc_manager.pp │ ├── ssh.pp │ ├── tasks.pp │ ├── templates.pp │ ├── virt_who_configure.pp │ └── webhooks.pp ├── compute │ ├── ec2.pp │ ├── libvirt.pp │ ├── openstack.pp │ ├── ovirt.pp │ └── vmware.pp ├── config.pp ├── config │ ├── apache.pp │ └── apache │ │ └── fragment.pp ├── database.pp ├── database │ ├── postgresql.pp │ └── postgresql │ │ └── encoding.pp ├── dynflow │ ├── pool.pp │ └── worker.pp ├── globals.pp ├── init.pp ├── install.pp ├── params.pp ├── plugin.pp ├── plugin │ ├── acd.pp │ ├── ansible.pp │ ├── azure.pp │ ├── bootdisk.pp │ ├── datacenter.pp │ ├── default_hostgroup.pp │ ├── dhcp_browser.pp │ ├── discovery.pp │ ├── dlm.pp │ ├── expire_hosts.pp │ ├── git_templates.pp │ ├── google.pp │ ├── hdm.pp │ ├── host_extra_validator.pp │ ├── kernel_care.pp │ ├── kubevirt.pp │ ├── leapp.pp │ ├── monitoring.pp │ ├── netbox.pp │ ├── omaha.pp │ ├── openscap.pp │ ├── ovirt.pp │ ├── proxmox.pp │ ├── puppet.pp │ ├── puppetdb.pp │ ├── remote_execution.pp │ ├── remote_execution │ │ └── cockpit.pp │ ├── rescue.pp │ ├── resource_quota.pp │ ├── rh_cloud.pp │ ├── salt.pp │ ├── scc_manager.pp │ ├── snapshot_management.pp │ ├── statistics.pp │ ├── supervisory_authority.pp │ ├── tasks.pp │ ├── templates.pp │ ├── vault.pp │ ├── virt_who_configure.pp │ ├── webhooks.pp │ └── wreckingball.pp ├── providers.pp ├── providers │ └── params.pp ├── rake.pp ├── register.pp ├── repo.pp ├── repos.pp ├── repos │ ├── apt.pp │ └── yum.pp ├── service.pp ├── settings.pp └── settings_fragment.pp ├── metadata.json ├── spec ├── acceptance │ ├── dynflow_spec.rb │ ├── foreman_basic_spec.rb │ ├── foreman_cli_plugins_spec.rb │ ├── foreman_cli_spec.rb │ ├── foreman_global_parameter_spec.rb │ ├── foreman_hostgroups_spec.rb │ ├── foreman_journald_spec.rb │ ├── foreman_prometheus_spec.rb │ ├── foreman_rex_cockpit_spec.rb │ ├── foreman_rh_cloud_spec.rb │ ├── foreman_service_spec.rb │ ├── foreman_statsd_spec.rb │ └── hieradata │ │ └── common.yaml ├── classes │ ├── cli_plugins_spec.rb │ ├── foreman_cli_spec.rb │ ├── foreman_config_apache_spec.rb │ ├── foreman_config_ipa_spec.rb │ ├── foreman_database_spec.rb │ ├── foreman_install_spec.rb │ ├── foreman_providers_spec.rb │ ├── foreman_repo_spec.rb │ ├── foreman_service_spec.rb │ ├── foreman_spec.rb │ └── plugin │ │ ├── acd_spec.rb │ │ ├── ansible_spec.rb │ │ ├── azure_spec.rb │ │ ├── bootdisk_spec.rb │ │ ├── datacenter.rb │ │ ├── default_hostgroup_spec.rb │ │ ├── dhcp_browser_spec.rb │ │ ├── discovery_spec.rb │ │ ├── dlm_spec.rb │ │ ├── expire_hosts_spec.rb │ │ ├── git_templates_spec.rb │ │ ├── google_spec.rb │ │ ├── hdm_spec.rb │ │ ├── host_extra_validator_spec.rb │ │ ├── kernel_care_spec.rb │ │ ├── kubevirt_spec.rb │ │ ├── leapp_spec.rb │ │ ├── monitoring_spec.rb │ │ ├── netbox_spec.rb │ │ ├── omaha_spec.rb │ │ ├── openscap_spec.rb │ │ ├── ovirt_spec.rb │ │ ├── proxmox_spec.rb │ │ ├── puppet_spec.rb │ │ ├── puppetdb_spec.rb │ │ ├── remote_execution_cockpit_spec.rb │ │ ├── remote_execution_spec.rb │ │ ├── rescue_spec.rb │ │ ├── resource_quota_spec.rb │ │ ├── rh_cloud_spec.rb │ │ ├── salt_spec.rb │ │ ├── scc_manager_spec.rb │ │ ├── snapshot_management_spec.rb │ │ ├── statistics_spec.rb │ │ ├── supervisory_authority_spec.rb │ │ ├── tasks_spec.rb │ │ ├── templates_spec.rb │ │ ├── vault_spec.rb │ │ ├── virt_who_configure_spec.rb │ │ ├── webhooks_spec.rb │ │ └── wreckingball_spec.rb ├── defines │ ├── foreman_config_apache_fragment_spec.rb │ ├── foreman_dynflow_pool_spec.rb │ ├── foreman_dynflow_worker_spec.rb │ ├── foreman_plugin_spec.rb │ ├── foreman_rake_spec.rb │ ├── foreman_repos_apt_spec.rb │ ├── foreman_repos_spec.rb │ ├── foreman_repos_yum_spec.rb │ └── foreman_settings_fragment_spec.rb ├── functions │ ├── foreman_foreman_spec.rb │ ├── foreman_smartvar_spec.rb │ └── foreman_to_symbolized_yaml_spec.rb ├── setup_acceptance_node.pp ├── spec.opts ├── spec_helper.rb ├── spec_helper_acceptance.rb ├── support │ ├── acceptance │ │ ├── examples.rb │ │ └── purge.rb │ ├── aio.rb │ ├── fixtures.rb │ └── plugin.rb ├── types │ └── foreman_hostgroup_spec.rb └── unit │ ├── facter │ └── dynflow_spec.rb │ ├── foreman_host_rest_v3_spec.rb │ ├── foreman_hostgroup_rest_v3_spec.rb │ ├── foreman_instance_host_rest_v3_spec.rb │ ├── foreman_resource_rest_v3_spec.rb │ ├── foreman_smartproxy_host_rest_v3_spec.rb │ ├── foreman_smartproxy_rest_v3_spec.rb │ ├── foreman_smartproxy_spec.rb │ ├── provider │ └── foreman_global_parameter │ │ └── rest_v3_spec.rb │ └── type │ └── foreman_global_parameter_spec.rb └── templates ├── _header.erb ├── _ssl_username.conf.erb ├── auth_gssapi.conf.erb ├── cockpit-apache-ssl.conf.erb ├── database.yml.epp ├── default_hostgroup.yaml.erb ├── external_auth_api.conf.erb ├── foreman.service-overrides.erb ├── foreman.socket-overrides.erb ├── hammer_etc.yml.epp ├── hammer_root.yml.epp ├── intercept_form_submit.conf.erb ├── lookup_identity.conf.erb ├── pam_service.erb ├── puppet.yaml.erb ├── remote_execution_cockpit.conf.erb ├── settings-external-auth-api.yaml.erb ├── settings-external-auth.yaml.erb ├── settings.yaml.erb └── tasks.cron.erb /.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/.fixtures.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/.gitignore -------------------------------------------------------------------------------- /.pmtignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/.pmtignore -------------------------------------------------------------------------------- /.puppet-lint.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/.puppet-lint.rc -------------------------------------------------------------------------------- /.sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/.sync.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/Gemfile -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/Rakefile -------------------------------------------------------------------------------- /files/_assets.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/files/_assets.conf.erb -------------------------------------------------------------------------------- /files/settings-reverse-proxy-headers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/files/settings-reverse-proxy-headers.yaml -------------------------------------------------------------------------------- /lib/facter/dynflow.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/lib/facter/dynflow.rb -------------------------------------------------------------------------------- /lib/facter/sssd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/lib/facter/sssd.rb -------------------------------------------------------------------------------- /lib/facter/util/sssd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/lib/facter/util/sssd.rb -------------------------------------------------------------------------------- /lib/puppet/feature/json.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/lib/puppet/feature/json.rb -------------------------------------------------------------------------------- /lib/puppet/feature/oauth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/lib/puppet/feature/oauth.rb -------------------------------------------------------------------------------- /lib/puppet/functions/foreman/enc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/lib/puppet/functions/foreman/enc.rb -------------------------------------------------------------------------------- /lib/puppet/functions/foreman/foreman.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/lib/puppet/functions/foreman/foreman.rb -------------------------------------------------------------------------------- /lib/puppet/functions/foreman/smartvar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/lib/puppet/functions/foreman/smartvar.rb -------------------------------------------------------------------------------- /lib/puppet/functions/foreman/to_symbolized_yaml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/lib/puppet/functions/foreman/to_symbolized_yaml.rb -------------------------------------------------------------------------------- /lib/puppet/provider/foreman_config_entry/cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/lib/puppet/provider/foreman_config_entry/cli.rb -------------------------------------------------------------------------------- /lib/puppet/provider/foreman_global_parameter/rest_v3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/lib/puppet/provider/foreman_global_parameter/rest_v3.rb -------------------------------------------------------------------------------- /lib/puppet/provider/foreman_host/rest_v3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/lib/puppet/provider/foreman_host/rest_v3.rb -------------------------------------------------------------------------------- /lib/puppet/provider/foreman_hostgroup/rest_v3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/lib/puppet/provider/foreman_hostgroup/rest_v3.rb -------------------------------------------------------------------------------- /lib/puppet/provider/foreman_instance_host/rest_v3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/lib/puppet/provider/foreman_instance_host/rest_v3.rb -------------------------------------------------------------------------------- /lib/puppet/provider/foreman_resource/rest_v3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/lib/puppet/provider/foreman_resource/rest_v3.rb -------------------------------------------------------------------------------- /lib/puppet/provider/foreman_smartproxy/rest_v3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/lib/puppet/provider/foreman_smartproxy/rest_v3.rb -------------------------------------------------------------------------------- /lib/puppet/provider/foreman_smartproxy_host/rest_v3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/lib/puppet/provider/foreman_smartproxy_host/rest_v3.rb -------------------------------------------------------------------------------- /lib/puppet/type/foreman_config_entry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/lib/puppet/type/foreman_config_entry.rb -------------------------------------------------------------------------------- /lib/puppet/type/foreman_global_parameter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/lib/puppet/type/foreman_global_parameter.rb -------------------------------------------------------------------------------- /lib/puppet/type/foreman_host.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/lib/puppet/type/foreman_host.rb -------------------------------------------------------------------------------- /lib/puppet/type/foreman_hostgroup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/lib/puppet/type/foreman_hostgroup.rb -------------------------------------------------------------------------------- /lib/puppet/type/foreman_instance_host.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/lib/puppet/type/foreman_instance_host.rb -------------------------------------------------------------------------------- /lib/puppet/type/foreman_resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/lib/puppet/type/foreman_resource.rb -------------------------------------------------------------------------------- /lib/puppet/type/foreman_smartproxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/lib/puppet/type/foreman_smartproxy.rb -------------------------------------------------------------------------------- /lib/puppet/type/foreman_smartproxy_host.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/lib/puppet/type/foreman_smartproxy_host.rb -------------------------------------------------------------------------------- /lib/puppet_x/foreman/common.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/lib/puppet_x/foreman/common.rb -------------------------------------------------------------------------------- /manifests/cli.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/cli.pp -------------------------------------------------------------------------------- /manifests/cli/ansible.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/cli/ansible.pp -------------------------------------------------------------------------------- /manifests/cli/azure.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/cli/azure.pp -------------------------------------------------------------------------------- /manifests/cli/bootdisk.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/cli/bootdisk.pp -------------------------------------------------------------------------------- /manifests/cli/discovery.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/cli/discovery.pp -------------------------------------------------------------------------------- /manifests/cli/globals.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/cli/globals.pp -------------------------------------------------------------------------------- /manifests/cli/google.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/cli/google.pp -------------------------------------------------------------------------------- /manifests/cli/katello.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/cli/katello.pp -------------------------------------------------------------------------------- /manifests/cli/kubevirt.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/cli/kubevirt.pp -------------------------------------------------------------------------------- /manifests/cli/openscap.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/cli/openscap.pp -------------------------------------------------------------------------------- /manifests/cli/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/cli/params.pp -------------------------------------------------------------------------------- /manifests/cli/plugin.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/cli/plugin.pp -------------------------------------------------------------------------------- /manifests/cli/puppet.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/cli/puppet.pp -------------------------------------------------------------------------------- /manifests/cli/remote_execution.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/cli/remote_execution.pp -------------------------------------------------------------------------------- /manifests/cli/resource_quota.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/cli/resource_quota.pp -------------------------------------------------------------------------------- /manifests/cli/rh_cloud.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/cli/rh_cloud.pp -------------------------------------------------------------------------------- /manifests/cli/salt.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/cli/salt.pp -------------------------------------------------------------------------------- /manifests/cli/scc_manager.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/cli/scc_manager.pp -------------------------------------------------------------------------------- /manifests/cli/ssh.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/cli/ssh.pp -------------------------------------------------------------------------------- /manifests/cli/tasks.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/cli/tasks.pp -------------------------------------------------------------------------------- /manifests/cli/templates.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/cli/templates.pp -------------------------------------------------------------------------------- /manifests/cli/virt_who_configure.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/cli/virt_who_configure.pp -------------------------------------------------------------------------------- /manifests/cli/webhooks.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/cli/webhooks.pp -------------------------------------------------------------------------------- /manifests/compute/ec2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/compute/ec2.pp -------------------------------------------------------------------------------- /manifests/compute/libvirt.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/compute/libvirt.pp -------------------------------------------------------------------------------- /manifests/compute/openstack.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/compute/openstack.pp -------------------------------------------------------------------------------- /manifests/compute/ovirt.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/compute/ovirt.pp -------------------------------------------------------------------------------- /manifests/compute/vmware.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/compute/vmware.pp -------------------------------------------------------------------------------- /manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/config.pp -------------------------------------------------------------------------------- /manifests/config/apache.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/config/apache.pp -------------------------------------------------------------------------------- /manifests/config/apache/fragment.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/config/apache/fragment.pp -------------------------------------------------------------------------------- /manifests/database.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/database.pp -------------------------------------------------------------------------------- /manifests/database/postgresql.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/database/postgresql.pp -------------------------------------------------------------------------------- /manifests/database/postgresql/encoding.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/database/postgresql/encoding.pp -------------------------------------------------------------------------------- /manifests/dynflow/pool.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/dynflow/pool.pp -------------------------------------------------------------------------------- /manifests/dynflow/worker.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/dynflow/worker.pp -------------------------------------------------------------------------------- /manifests/globals.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/globals.pp -------------------------------------------------------------------------------- /manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/init.pp -------------------------------------------------------------------------------- /manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/install.pp -------------------------------------------------------------------------------- /manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/params.pp -------------------------------------------------------------------------------- /manifests/plugin.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/plugin.pp -------------------------------------------------------------------------------- /manifests/plugin/acd.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/plugin/acd.pp -------------------------------------------------------------------------------- /manifests/plugin/ansible.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/plugin/ansible.pp -------------------------------------------------------------------------------- /manifests/plugin/azure.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/plugin/azure.pp -------------------------------------------------------------------------------- /manifests/plugin/bootdisk.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/plugin/bootdisk.pp -------------------------------------------------------------------------------- /manifests/plugin/datacenter.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/plugin/datacenter.pp -------------------------------------------------------------------------------- /manifests/plugin/default_hostgroup.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/plugin/default_hostgroup.pp -------------------------------------------------------------------------------- /manifests/plugin/dhcp_browser.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/plugin/dhcp_browser.pp -------------------------------------------------------------------------------- /manifests/plugin/discovery.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/plugin/discovery.pp -------------------------------------------------------------------------------- /manifests/plugin/dlm.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/plugin/dlm.pp -------------------------------------------------------------------------------- /manifests/plugin/expire_hosts.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/plugin/expire_hosts.pp -------------------------------------------------------------------------------- /manifests/plugin/git_templates.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/plugin/git_templates.pp -------------------------------------------------------------------------------- /manifests/plugin/google.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/plugin/google.pp -------------------------------------------------------------------------------- /manifests/plugin/hdm.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/plugin/hdm.pp -------------------------------------------------------------------------------- /manifests/plugin/host_extra_validator.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/plugin/host_extra_validator.pp -------------------------------------------------------------------------------- /manifests/plugin/kernel_care.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/plugin/kernel_care.pp -------------------------------------------------------------------------------- /manifests/plugin/kubevirt.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/plugin/kubevirt.pp -------------------------------------------------------------------------------- /manifests/plugin/leapp.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/plugin/leapp.pp -------------------------------------------------------------------------------- /manifests/plugin/monitoring.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/plugin/monitoring.pp -------------------------------------------------------------------------------- /manifests/plugin/netbox.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/plugin/netbox.pp -------------------------------------------------------------------------------- /manifests/plugin/omaha.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/plugin/omaha.pp -------------------------------------------------------------------------------- /manifests/plugin/openscap.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/plugin/openscap.pp -------------------------------------------------------------------------------- /manifests/plugin/ovirt.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/plugin/ovirt.pp -------------------------------------------------------------------------------- /manifests/plugin/proxmox.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/plugin/proxmox.pp -------------------------------------------------------------------------------- /manifests/plugin/puppet.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/plugin/puppet.pp -------------------------------------------------------------------------------- /manifests/plugin/puppetdb.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/plugin/puppetdb.pp -------------------------------------------------------------------------------- /manifests/plugin/remote_execution.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/plugin/remote_execution.pp -------------------------------------------------------------------------------- /manifests/plugin/remote_execution/cockpit.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/plugin/remote_execution/cockpit.pp -------------------------------------------------------------------------------- /manifests/plugin/rescue.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/plugin/rescue.pp -------------------------------------------------------------------------------- /manifests/plugin/resource_quota.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/plugin/resource_quota.pp -------------------------------------------------------------------------------- /manifests/plugin/rh_cloud.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/plugin/rh_cloud.pp -------------------------------------------------------------------------------- /manifests/plugin/salt.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/plugin/salt.pp -------------------------------------------------------------------------------- /manifests/plugin/scc_manager.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/plugin/scc_manager.pp -------------------------------------------------------------------------------- /manifests/plugin/snapshot_management.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/plugin/snapshot_management.pp -------------------------------------------------------------------------------- /manifests/plugin/statistics.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/plugin/statistics.pp -------------------------------------------------------------------------------- /manifests/plugin/supervisory_authority.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/plugin/supervisory_authority.pp -------------------------------------------------------------------------------- /manifests/plugin/tasks.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/plugin/tasks.pp -------------------------------------------------------------------------------- /manifests/plugin/templates.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/plugin/templates.pp -------------------------------------------------------------------------------- /manifests/plugin/vault.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/plugin/vault.pp -------------------------------------------------------------------------------- /manifests/plugin/virt_who_configure.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/plugin/virt_who_configure.pp -------------------------------------------------------------------------------- /manifests/plugin/webhooks.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/plugin/webhooks.pp -------------------------------------------------------------------------------- /manifests/plugin/wreckingball.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/plugin/wreckingball.pp -------------------------------------------------------------------------------- /manifests/providers.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/providers.pp -------------------------------------------------------------------------------- /manifests/providers/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/providers/params.pp -------------------------------------------------------------------------------- /manifests/rake.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/rake.pp -------------------------------------------------------------------------------- /manifests/register.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/register.pp -------------------------------------------------------------------------------- /manifests/repo.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/repo.pp -------------------------------------------------------------------------------- /manifests/repos.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/repos.pp -------------------------------------------------------------------------------- /manifests/repos/apt.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/repos/apt.pp -------------------------------------------------------------------------------- /manifests/repos/yum.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/repos/yum.pp -------------------------------------------------------------------------------- /manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/service.pp -------------------------------------------------------------------------------- /manifests/settings.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/settings.pp -------------------------------------------------------------------------------- /manifests/settings_fragment.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/manifests/settings_fragment.pp -------------------------------------------------------------------------------- /metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/metadata.json -------------------------------------------------------------------------------- /spec/acceptance/dynflow_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/acceptance/dynflow_spec.rb -------------------------------------------------------------------------------- /spec/acceptance/foreman_basic_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/acceptance/foreman_basic_spec.rb -------------------------------------------------------------------------------- /spec/acceptance/foreman_cli_plugins_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/acceptance/foreman_cli_plugins_spec.rb -------------------------------------------------------------------------------- /spec/acceptance/foreman_cli_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/acceptance/foreman_cli_spec.rb -------------------------------------------------------------------------------- /spec/acceptance/foreman_global_parameter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/acceptance/foreman_global_parameter_spec.rb -------------------------------------------------------------------------------- /spec/acceptance/foreman_hostgroups_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/acceptance/foreman_hostgroups_spec.rb -------------------------------------------------------------------------------- /spec/acceptance/foreman_journald_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/acceptance/foreman_journald_spec.rb -------------------------------------------------------------------------------- /spec/acceptance/foreman_prometheus_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/acceptance/foreman_prometheus_spec.rb -------------------------------------------------------------------------------- /spec/acceptance/foreman_rex_cockpit_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/acceptance/foreman_rex_cockpit_spec.rb -------------------------------------------------------------------------------- /spec/acceptance/foreman_rh_cloud_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/acceptance/foreman_rh_cloud_spec.rb -------------------------------------------------------------------------------- /spec/acceptance/foreman_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/acceptance/foreman_service_spec.rb -------------------------------------------------------------------------------- /spec/acceptance/foreman_statsd_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/acceptance/foreman_statsd_spec.rb -------------------------------------------------------------------------------- /spec/acceptance/hieradata/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/acceptance/hieradata/common.yaml -------------------------------------------------------------------------------- /spec/classes/cli_plugins_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/cli_plugins_spec.rb -------------------------------------------------------------------------------- /spec/classes/foreman_cli_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/foreman_cli_spec.rb -------------------------------------------------------------------------------- /spec/classes/foreman_config_apache_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/foreman_config_apache_spec.rb -------------------------------------------------------------------------------- /spec/classes/foreman_config_ipa_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/foreman_config_ipa_spec.rb -------------------------------------------------------------------------------- /spec/classes/foreman_database_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/foreman_database_spec.rb -------------------------------------------------------------------------------- /spec/classes/foreman_install_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/foreman_install_spec.rb -------------------------------------------------------------------------------- /spec/classes/foreman_providers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/foreman_providers_spec.rb -------------------------------------------------------------------------------- /spec/classes/foreman_repo_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/foreman_repo_spec.rb -------------------------------------------------------------------------------- /spec/classes/foreman_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/foreman_service_spec.rb -------------------------------------------------------------------------------- /spec/classes/foreman_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/foreman_spec.rb -------------------------------------------------------------------------------- /spec/classes/plugin/acd_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/plugin/acd_spec.rb -------------------------------------------------------------------------------- /spec/classes/plugin/ansible_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/plugin/ansible_spec.rb -------------------------------------------------------------------------------- /spec/classes/plugin/azure_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/plugin/azure_spec.rb -------------------------------------------------------------------------------- /spec/classes/plugin/bootdisk_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/plugin/bootdisk_spec.rb -------------------------------------------------------------------------------- /spec/classes/plugin/datacenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/plugin/datacenter.rb -------------------------------------------------------------------------------- /spec/classes/plugin/default_hostgroup_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/plugin/default_hostgroup_spec.rb -------------------------------------------------------------------------------- /spec/classes/plugin/dhcp_browser_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/plugin/dhcp_browser_spec.rb -------------------------------------------------------------------------------- /spec/classes/plugin/discovery_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/plugin/discovery_spec.rb -------------------------------------------------------------------------------- /spec/classes/plugin/dlm_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/plugin/dlm_spec.rb -------------------------------------------------------------------------------- /spec/classes/plugin/expire_hosts_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/plugin/expire_hosts_spec.rb -------------------------------------------------------------------------------- /spec/classes/plugin/git_templates_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/plugin/git_templates_spec.rb -------------------------------------------------------------------------------- /spec/classes/plugin/google_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/plugin/google_spec.rb -------------------------------------------------------------------------------- /spec/classes/plugin/hdm_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/plugin/hdm_spec.rb -------------------------------------------------------------------------------- /spec/classes/plugin/host_extra_validator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/plugin/host_extra_validator_spec.rb -------------------------------------------------------------------------------- /spec/classes/plugin/kernel_care_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/plugin/kernel_care_spec.rb -------------------------------------------------------------------------------- /spec/classes/plugin/kubevirt_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/plugin/kubevirt_spec.rb -------------------------------------------------------------------------------- /spec/classes/plugin/leapp_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/plugin/leapp_spec.rb -------------------------------------------------------------------------------- /spec/classes/plugin/monitoring_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/plugin/monitoring_spec.rb -------------------------------------------------------------------------------- /spec/classes/plugin/netbox_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/plugin/netbox_spec.rb -------------------------------------------------------------------------------- /spec/classes/plugin/omaha_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/plugin/omaha_spec.rb -------------------------------------------------------------------------------- /spec/classes/plugin/openscap_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/plugin/openscap_spec.rb -------------------------------------------------------------------------------- /spec/classes/plugin/ovirt_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/plugin/ovirt_spec.rb -------------------------------------------------------------------------------- /spec/classes/plugin/proxmox_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/plugin/proxmox_spec.rb -------------------------------------------------------------------------------- /spec/classes/plugin/puppet_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/plugin/puppet_spec.rb -------------------------------------------------------------------------------- /spec/classes/plugin/puppetdb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/plugin/puppetdb_spec.rb -------------------------------------------------------------------------------- /spec/classes/plugin/remote_execution_cockpit_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/plugin/remote_execution_cockpit_spec.rb -------------------------------------------------------------------------------- /spec/classes/plugin/remote_execution_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/plugin/remote_execution_spec.rb -------------------------------------------------------------------------------- /spec/classes/plugin/rescue_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/plugin/rescue_spec.rb -------------------------------------------------------------------------------- /spec/classes/plugin/resource_quota_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/plugin/resource_quota_spec.rb -------------------------------------------------------------------------------- /spec/classes/plugin/rh_cloud_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/plugin/rh_cloud_spec.rb -------------------------------------------------------------------------------- /spec/classes/plugin/salt_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/plugin/salt_spec.rb -------------------------------------------------------------------------------- /spec/classes/plugin/scc_manager_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/plugin/scc_manager_spec.rb -------------------------------------------------------------------------------- /spec/classes/plugin/snapshot_management_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/plugin/snapshot_management_spec.rb -------------------------------------------------------------------------------- /spec/classes/plugin/statistics_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/plugin/statistics_spec.rb -------------------------------------------------------------------------------- /spec/classes/plugin/supervisory_authority_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/plugin/supervisory_authority_spec.rb -------------------------------------------------------------------------------- /spec/classes/plugin/tasks_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/plugin/tasks_spec.rb -------------------------------------------------------------------------------- /spec/classes/plugin/templates_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/plugin/templates_spec.rb -------------------------------------------------------------------------------- /spec/classes/plugin/vault_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/plugin/vault_spec.rb -------------------------------------------------------------------------------- /spec/classes/plugin/virt_who_configure_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/plugin/virt_who_configure_spec.rb -------------------------------------------------------------------------------- /spec/classes/plugin/webhooks_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/plugin/webhooks_spec.rb -------------------------------------------------------------------------------- /spec/classes/plugin/wreckingball_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/classes/plugin/wreckingball_spec.rb -------------------------------------------------------------------------------- /spec/defines/foreman_config_apache_fragment_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/defines/foreman_config_apache_fragment_spec.rb -------------------------------------------------------------------------------- /spec/defines/foreman_dynflow_pool_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/defines/foreman_dynflow_pool_spec.rb -------------------------------------------------------------------------------- /spec/defines/foreman_dynflow_worker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/defines/foreman_dynflow_worker_spec.rb -------------------------------------------------------------------------------- /spec/defines/foreman_plugin_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/defines/foreman_plugin_spec.rb -------------------------------------------------------------------------------- /spec/defines/foreman_rake_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/defines/foreman_rake_spec.rb -------------------------------------------------------------------------------- /spec/defines/foreman_repos_apt_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/defines/foreman_repos_apt_spec.rb -------------------------------------------------------------------------------- /spec/defines/foreman_repos_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/defines/foreman_repos_spec.rb -------------------------------------------------------------------------------- /spec/defines/foreman_repos_yum_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/defines/foreman_repos_yum_spec.rb -------------------------------------------------------------------------------- /spec/defines/foreman_settings_fragment_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/defines/foreman_settings_fragment_spec.rb -------------------------------------------------------------------------------- /spec/functions/foreman_foreman_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/functions/foreman_foreman_spec.rb -------------------------------------------------------------------------------- /spec/functions/foreman_smartvar_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/functions/foreman_smartvar_spec.rb -------------------------------------------------------------------------------- /spec/functions/foreman_to_symbolized_yaml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/functions/foreman_to_symbolized_yaml_spec.rb -------------------------------------------------------------------------------- /spec/setup_acceptance_node.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/setup_acceptance_node.pp -------------------------------------------------------------------------------- /spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/spec.opts -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/spec_helper_acceptance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/spec_helper_acceptance.rb -------------------------------------------------------------------------------- /spec/support/acceptance/examples.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/support/acceptance/examples.rb -------------------------------------------------------------------------------- /spec/support/acceptance/purge.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/support/acceptance/purge.rb -------------------------------------------------------------------------------- /spec/support/aio.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/support/aio.rb -------------------------------------------------------------------------------- /spec/support/fixtures.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/support/fixtures.rb -------------------------------------------------------------------------------- /spec/support/plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/support/plugin.rb -------------------------------------------------------------------------------- /spec/types/foreman_hostgroup_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/types/foreman_hostgroup_spec.rb -------------------------------------------------------------------------------- /spec/unit/facter/dynflow_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/unit/facter/dynflow_spec.rb -------------------------------------------------------------------------------- /spec/unit/foreman_host_rest_v3_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/unit/foreman_host_rest_v3_spec.rb -------------------------------------------------------------------------------- /spec/unit/foreman_hostgroup_rest_v3_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/unit/foreman_hostgroup_rest_v3_spec.rb -------------------------------------------------------------------------------- /spec/unit/foreman_instance_host_rest_v3_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/unit/foreman_instance_host_rest_v3_spec.rb -------------------------------------------------------------------------------- /spec/unit/foreman_resource_rest_v3_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/unit/foreman_resource_rest_v3_spec.rb -------------------------------------------------------------------------------- /spec/unit/foreman_smartproxy_host_rest_v3_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/unit/foreman_smartproxy_host_rest_v3_spec.rb -------------------------------------------------------------------------------- /spec/unit/foreman_smartproxy_rest_v3_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/unit/foreman_smartproxy_rest_v3_spec.rb -------------------------------------------------------------------------------- /spec/unit/foreman_smartproxy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/unit/foreman_smartproxy_spec.rb -------------------------------------------------------------------------------- /spec/unit/provider/foreman_global_parameter/rest_v3_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/unit/provider/foreman_global_parameter/rest_v3_spec.rb -------------------------------------------------------------------------------- /spec/unit/type/foreman_global_parameter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/spec/unit/type/foreman_global_parameter_spec.rb -------------------------------------------------------------------------------- /templates/_header.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/templates/_header.erb -------------------------------------------------------------------------------- /templates/_ssl_username.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/templates/_ssl_username.conf.erb -------------------------------------------------------------------------------- /templates/auth_gssapi.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/templates/auth_gssapi.conf.erb -------------------------------------------------------------------------------- /templates/cockpit-apache-ssl.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/templates/cockpit-apache-ssl.conf.erb -------------------------------------------------------------------------------- /templates/database.yml.epp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/templates/database.yml.epp -------------------------------------------------------------------------------- /templates/default_hostgroup.yaml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/templates/default_hostgroup.yaml.erb -------------------------------------------------------------------------------- /templates/external_auth_api.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/templates/external_auth_api.conf.erb -------------------------------------------------------------------------------- /templates/foreman.service-overrides.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/templates/foreman.service-overrides.erb -------------------------------------------------------------------------------- /templates/foreman.socket-overrides.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/templates/foreman.socket-overrides.erb -------------------------------------------------------------------------------- /templates/hammer_etc.yml.epp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/templates/hammer_etc.yml.epp -------------------------------------------------------------------------------- /templates/hammer_root.yml.epp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/templates/hammer_root.yml.epp -------------------------------------------------------------------------------- /templates/intercept_form_submit.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/templates/intercept_form_submit.conf.erb -------------------------------------------------------------------------------- /templates/lookup_identity.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/templates/lookup_identity.conf.erb -------------------------------------------------------------------------------- /templates/pam_service.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/templates/pam_service.erb -------------------------------------------------------------------------------- /templates/puppet.yaml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/templates/puppet.yaml.erb -------------------------------------------------------------------------------- /templates/remote_execution_cockpit.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/templates/remote_execution_cockpit.conf.erb -------------------------------------------------------------------------------- /templates/settings-external-auth-api.yaml.erb: -------------------------------------------------------------------------------- 1 | :authorize_login_delegation_api: true 2 | -------------------------------------------------------------------------------- /templates/settings-external-auth.yaml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/templates/settings-external-auth.yaml.erb -------------------------------------------------------------------------------- /templates/settings.yaml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/templates/settings.yaml.erb -------------------------------------------------------------------------------- /templates/tasks.cron.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman/HEAD/templates/tasks.cron.erb --------------------------------------------------------------------------------