Previously, if you change the image_name
(such as for updating the Foreman Discovery Image version), the new tar file would be downloaded but not untarred because the content of the previous tar file would be there and pass the creates
check.
If we use refreshonly
instead of creates
, t...
Fix typo.
Commit ee2d9de0b4a8b596169db1a8ff15995978661e44 changed the data type for queryhosts
from Array[String]
to Array[String[1]]
. These parameters configure allow
and deny
in chrony.conf
. But allow
and deny
are allowed to be by themselves in the config, meaning "allow everything" or "d...
Make use of the variables config_file and keys_file to avoid duplicating tests for different OS families.
Need to anchor the end of line for these tests to be totally correct. Fixes #163.
Fix broken links in README.md.
The target
parameter is not implemented yet, so it doesn't do anything, and the yumrepo docs say not to use it: https://github.com/puppetlabs/puppetlabs-yumrepo_core/blob/136ee930eda907171a76fd599846f62602bec685/REFERENCE.md?plain=1#L349
See also: https://github.com/puppetlabs/puppetlabs-yum...
For compatibility with https://github.com/puppetlabs/puppetlabs-stdlib/pull/1196.
Fixes #1522.
This method of purging unmanaged yum repo configs does not work. This is because the repo configs are managed by puppetlabs/yumrepo_core as native yumrepo
types, not file
resources.
Fixes #285
Typo fixes.
Missed this doc update with #333.
Includes #133.
There should be no "x" before the "64" in the setfile
name.
Remove Installation and Compatibility sections from README.md. Puppet Forge has installation instructions on each module's page already. The Compatibility section is redundant with metadata.json.
Remove .DS_Store that was inadvertently added.
Since webrick has part of the ruby standard library for a while, its version doesn't need to be specified anymore.
The sinatra gem comes with Puppet, so its version also doesn't need to be specified.
Fixes #471.
These changes make kmod::load enable persistent module loading the systemd way, when the system is running systemd, as detected by the service_provider fact.
I'm new to writing tests, so I don't know ...