You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(PA-7586) Upgrade puppetcore* dmg from artifacts-puppetcore.puppet.com
When using the puppetcore collection on macOS, if we detect the version does not
match, then upgrade the DMG. Due to a puppet bug, we cannot pass credentials in
the `source` parameter, so curl using 'netrc' to pass credentials securely.
Note facter's `os.release.major` returns the Darwin kernel version (23), but our
packages are named after the OS version (14), so use `os.macosx.version.major`.
```
class { 'puppet_agent':
package_version => '8.13.1',
collection => 'puppetcore8',
username => 'forge-key',
password => Sensitive(...)
}
include 'puppet_agent'
```
0 commit comments