12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# File 'manifests/init.pp', line 12
class halyard (
) {
$root_path = '/opt/halyard'
$repo_path = "${root_path}/repo"
file { '/usr/local/bin':
ensure => directory,
owner => 'root',
group => 'wheel'
}
file { '/usr/local/bin/halyard':
ensure => file,
content => epp('halyard/sudo_halyard.epp', { 'repo_path' => $repo_path }),
owner => 'root',
group => 'wheel',
mode => '0755'
}
$commands = [
"${repo_path}/meta/halyard",
"/bin/sh -c ${repo_path}/meta/halyard"
]
sudoers::allowed_command{ 'halyard_puppet':
command => join($commands, ','),
user => $facts['id'],
require_password => false,
comment => 'Allows halyard user to run puppet',
require_exist => false,
allowed_env_variables => ['DEBUG', 'PUPPET_ENV', 'PROFILE'],
defaults => ['secure_path = /sbin:/bin:/usr/sbin:/usr/bin']
}
}
|