Install our latest version of osmo-stack

This commit is contained in:
Wile E. Coyote 2017-01-30 14:10:12 +00:00
parent f7eccaae9b
commit af5f716c8d
2 changed files with 11 additions and 4 deletions

View file

@ -17,7 +17,9 @@ class rhizo_base::apt {
class rhizo_base::apt::common { class rhizo_base::apt::common {
class { '::apt': } class { '::apt':
always_apt_update => true,
}
file { '/etc/apt/apt.conf.d/90unsigned': file { '/etc/apt/apt.conf.d/90unsigned':
ensure => present, ensure => present,

View file

@ -25,12 +25,17 @@ class rhizo_base::openbsc {
$bts3_ip_address = $rhizo_base::bts3_ip_address $bts3_ip_address = $rhizo_base::bts3_ip_address
$smsc_password = $rhizo_base::smsc_password $smsc_password = $rhizo_base::smsc_password
package { [ 'libosmoabis4', 'libosmocore6', package { [ 'libosmoabis5', 'libosmocore7',
'libosmoctrl0', 'libosmogsm5', 'libosmoctrl0', 'libosmogsm5',
'libosmovty1', 'osmocom-nitb', 'libosmovty3' ]:
'osmocom-nitb-dbg']:
ensure => latest, ensure => latest,
require => Class['rhizo_base::apt'], require => Class['rhizo_base::apt'],
notify => [ Exec['restart-nitb'] ],
}
package { [ 'osmocom-nitb' ]:
ensure => '0.15.1-0rhizo3',
require => Class['rhizo_base::apt'],
notify => [ Exec['hlr_pragma_wal'], notify => [ Exec['hlr_pragma_wal'],
Exec['restart-nitb'] ], Exec['restart-nitb'] ],
} }