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

18 lines
371 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 = '',
2024-10-06 12:29:48 +00:00
Array[String] clients = [],
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
}