cdn-ops/global/overlay/etc/puppet/modules/cdn/manifests/mqtt.pp

17 lines
341 B
ObjectPascal
Raw Normal View History

2024-10-04 15:33:49 +00:00
# Configure a SUNET CDN mqtt server
2024-10-04 15:43:31 +00:00
class cdn::mqtt(
String $dc = '',
Hash[String, Hash] $bridges = {},
2024-10-04 15:33:49 +00:00
)
{
package {'mosquitto': ensure => installed }
file { '/etc/mosquitto/aclfile':
ensure => file,
owner => 'root',
group => 'root',
mode => '0644',
content => template('cdn/runner/aclfile.erb'),
}
2024-10-04 15:33:49 +00:00
}