Project

General

Profile

« Previous | Next » 

Revision 1c8129bf

Added by Stephen Benjamin over 7 years ago

fixes #17863 - use puppet user not uid

The UID is not using the assigned one:
https://tickets.puppetlabs.com/browse/SERVER-1381, so we can't do the 52
trick. We need to require the puppet server install class to ensure the
package is installed first.

View differences:

manifests/puppet.pp
key_pair => $::certs::server_ca,
} ~>
file { $client_key:
ensure => file,
owner => '52',
mode => '0400',
ensure => file,
owner => 'puppet',
mode => '0400',
require => Class['puppet::server::install'],
}
}

Also available in: Unified diff