Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions data/defaults.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ subscription_manager::config_hash:
rhsm_manage_repos: true
rhsmcertd_certcheckinterval: 240
rhsmcertd_autoattachinterval: 1440
rhsm_repomd_gpg_url: ''
# also, proxy settings
# server_proxy_hostname: ''
# server_proxy_port: ''
Expand Down
5 changes: 5 additions & 0 deletions lib/puppet/type/rhsm_config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ def self.text_options
:rhsm_consumercertdir => 'rhsm.consumercertdir',
:rhsm_pluginconfdir => 'rhsm.pluginconfdir',
:rhsm_plugindir => 'rhsm.plugindir',
:rhsm_repomd_gpg_url => 'rhsm.repomd_gpg_url',
:rhsmcertd_certcheckinterval => 'rhsmcertd.certcheckinterval',
:rhsmcertd_autoattachinterval => 'rhsmcertd.autoattachinterval',
:logging_default_log_level => 'logging.default_log_level',
Expand Down Expand Up @@ -326,4 +327,8 @@ def self.binary_options
end
end

newproperty(:rhsm_repomd_gpg_url) do
desc "Repo gpg"
end

end