
Add tests to ensure the asterisk class can be applied correctly and the service can start. Change-Id: I9714e040d6c73e7b0e8ce5d9fe91f2674214efa6
14 lines
258 B
Puppet
14 lines
258 B
Puppet
$config = '[modules](+)
|
|
; Application modules
|
|
load => app_confbridge.so
|
|
load => chan_bridge.so'
|
|
|
|
file { '/tmp/asterisk-modules.conf':
|
|
ensure => present,
|
|
content => $config,
|
|
}
|
|
|
|
class { 'asterisk':
|
|
modules_conf_source => '/tmp/asterisk-modules.conf',
|
|
}
|