Puppet Class: r_profile::puppet::master::license
- Defined in:
- manifests/puppet/master/license.pp
Overview
R_profile::Puppet::Master::License
Install a puppet license key onto the puppet Master. This works by symlinking the license.key file from your control repository to the correct location on the puppet master. To upgrade or alter your license information, just update the file in the control repository (production branch) and then deploy to the master as usual.
12 13 14 15 16 17 18 19 20 |
# File 'manifests/puppet/master/license.pp', line 12
class r_profile::puppet::master::license {
file { "/etc/puppetlabs/license.key":
ensure => link,
owner => "root",
group => "root",
mode => "0755",
target => "/etc/puppetlabs/code/environments/production/license.key",
}
}
|