├── .fixtures.yml ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .pmtignore ├── .puppet-lint.rc ├── CONTRIBUTING.md ├── COPYING ├── Gemfile ├── NEWS ├── README.md ├── Rakefile ├── lib └── facter │ └── rh_certificates.rb ├── manifests ├── init.pp └── params.pp ├── metadata.json ├── spec ├── acceptance │ ├── basic_spec.rb │ └── rh_certificate_fact_spec.rb ├── classes │ └── init_spec.rb ├── spec.opts ├── spec_helper.rb └── spec_helper_acceptance.rb └── templates ├── config.yaml.erb └── cron.erb /.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman_scap_client/HEAD/.fixtures.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman_scap_client/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman_scap_client/HEAD/.gitignore -------------------------------------------------------------------------------- /.pmtignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman_scap_client/HEAD/.pmtignore -------------------------------------------------------------------------------- /.puppet-lint.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman_scap_client/HEAD/.puppet-lint.rc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman_scap_client/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman_scap_client/HEAD/COPYING -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman_scap_client/HEAD/Gemfile -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman_scap_client/HEAD/NEWS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman_scap_client/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman_scap_client/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/facter/rh_certificates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman_scap_client/HEAD/lib/facter/rh_certificates.rb -------------------------------------------------------------------------------- /manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman_scap_client/HEAD/manifests/init.pp -------------------------------------------------------------------------------- /manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman_scap_client/HEAD/manifests/params.pp -------------------------------------------------------------------------------- /metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman_scap_client/HEAD/metadata.json -------------------------------------------------------------------------------- /spec/acceptance/basic_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman_scap_client/HEAD/spec/acceptance/basic_spec.rb -------------------------------------------------------------------------------- /spec/acceptance/rh_certificate_fact_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman_scap_client/HEAD/spec/acceptance/rh_certificate_fact_spec.rb -------------------------------------------------------------------------------- /spec/classes/init_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman_scap_client/HEAD/spec/classes/init_spec.rb -------------------------------------------------------------------------------- /spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman_scap_client/HEAD/spec/spec.opts -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman_scap_client/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/spec_helper_acceptance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman_scap_client/HEAD/spec/spec_helper_acceptance.rb -------------------------------------------------------------------------------- /templates/config.yaml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman_scap_client/HEAD/templates/config.yaml.erb -------------------------------------------------------------------------------- /templates/cron.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/puppet-foreman_scap_client/HEAD/templates/cron.erb --------------------------------------------------------------------------------