Make sure that FreeSWITCH, Osmocom-NITB and LCR are disabled in the init system. (We run them with runit).
This commit is contained in:
parent
ee1c6bd131
commit
d652133a80
3 changed files with 18 additions and 0 deletions
|
@ -53,6 +53,12 @@ class rhizo_base::freeswitch {
|
||||||
require => Class['rhizo_base::apt'],
|
require => Class['rhizo_base::apt'],
|
||||||
}
|
}
|
||||||
|
|
||||||
|
service { 'freeswitch':
|
||||||
|
ensure => stopped,
|
||||||
|
enable => false,
|
||||||
|
require => Package['freeswitch']
|
||||||
|
}
|
||||||
|
|
||||||
file { '/usr/lib/freeswitch/mod/mod_g729.so':
|
file { '/usr/lib/freeswitch/mod/mod_g729.so':
|
||||||
source => 'puppet:///modules/rhizo_base/mod_g729.so',
|
source => 'puppet:///modules/rhizo_base/mod_g729.so',
|
||||||
require => Package['freeswitch'],
|
require => Package['freeswitch'],
|
||||||
|
|
|
@ -16,6 +16,12 @@ class rhizo_base::lcr {
|
||||||
require => Class['rhizo_base::apt'],
|
require => Class['rhizo_base::apt'],
|
||||||
}
|
}
|
||||||
|
|
||||||
|
service { 'lcr':
|
||||||
|
ensure => stopped,
|
||||||
|
enable => false,
|
||||||
|
require => Package['lcr']
|
||||||
|
}
|
||||||
|
|
||||||
file { '/usr/etc/lcr':
|
file { '/usr/etc/lcr':
|
||||||
ensure => directory,
|
ensure => directory,
|
||||||
source => 'puppet:///modules/rhizo_base/usr/etc/lcr',
|
source => 'puppet:///modules/rhizo_base/usr/etc/lcr',
|
||||||
|
|
|
@ -31,6 +31,12 @@ class rhizo_base::openbsc {
|
||||||
notify => Exec['hlr_pragma_wal'],
|
notify => Exec['hlr_pragma_wal'],
|
||||||
}
|
}
|
||||||
|
|
||||||
|
service { 'osmocom-nitb':
|
||||||
|
ensure => stopped,
|
||||||
|
enable => false,
|
||||||
|
require => Package['osmocom-nitb']
|
||||||
|
}
|
||||||
|
|
||||||
file { '/etc/osmocom/osmo-nitb.cfg':
|
file { '/etc/osmocom/osmo-nitb.cfg':
|
||||||
content => template('rhizo_base/osmo-nitb.cfg.erb'),
|
content => template('rhizo_base/osmo-nitb.cfg.erb'),
|
||||||
require => Package['osmocom-nitb'],
|
require => Package['osmocom-nitb'],
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue