25 lines
415 B
Puppet
25 lines
415 B
Puppet
# This manifest is managed using cosmos
|
|
class streams {
|
|
include sunet::motd
|
|
|
|
sunet::ssh_keys { 'streamsops':
|
|
config => safe_hiera('streams_ssh_keys', {})
|
|
}
|
|
|
|
sunet::ssh_keys { 'sunetops':
|
|
config => safe_hiera('sunetops_ssh_keys', {})
|
|
}
|
|
|
|
include sunet::rsyslog
|
|
include sunet::nagios::nrpe
|
|
}
|
|
|
|
Exec {
|
|
path => '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin',
|
|
}
|
|
|
|
|
|
node default {
|
|
|
|
}
|