From af5f716c8d7641e553cc89e593555a75a609cbc8 Mon Sep 17 00:00:00 2001 From: "Wile E. Coyote" Date: Mon, 30 Jan 2017 14:10:12 +0000 Subject: [PATCH] Install our latest version of osmo-stack --- modules/rhizo_base/manifests/apt.pp | 4 +++- modules/rhizo_base/manifests/openbsc.pp | 11 ++++++++--- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/modules/rhizo_base/manifests/apt.pp b/modules/rhizo_base/manifests/apt.pp index eee8f55..526e0ec 100644 --- a/modules/rhizo_base/manifests/apt.pp +++ b/modules/rhizo_base/manifests/apt.pp @@ -17,7 +17,9 @@ class rhizo_base::apt { class rhizo_base::apt::common { - class { '::apt': } + class { '::apt': + always_apt_update => true, + } file { '/etc/apt/apt.conf.d/90unsigned': ensure => present, diff --git a/modules/rhizo_base/manifests/openbsc.pp b/modules/rhizo_base/manifests/openbsc.pp index 32e63b2..e5388bd 100644 --- a/modules/rhizo_base/manifests/openbsc.pp +++ b/modules/rhizo_base/manifests/openbsc.pp @@ -25,12 +25,17 @@ class rhizo_base::openbsc { $bts3_ip_address = $rhizo_base::bts3_ip_address $smsc_password = $rhizo_base::smsc_password - package { [ 'libosmoabis4', 'libosmocore6', + package { [ 'libosmoabis5', 'libosmocore7', 'libosmoctrl0', 'libosmogsm5', - 'libosmovty1', 'osmocom-nitb', - 'osmocom-nitb-dbg']: + 'libosmovty3' ]: ensure => latest, 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'], Exec['restart-nitb'] ], }