Ensure osmo-sip-connector is 1.3.0

Osmo Sip Connector after version 1.3.0 updated the MNCC version
and will not work anymore with the osmo-nitb. As the .deb is
no longer available we save a copy of it here and will install
manually in a fortchcoming commit.
This commit is contained in:
Monocots 2020-03-24 22:57:01 +00:00 committed by Keith Whyte
parent 4996cd3c43
commit cbd13217bd
2 changed files with 11 additions and 1 deletions

View file

@ -50,7 +50,17 @@ class rhizo_base::openbsc {
Exec['notify-nitb'] ],
}
package { [ 'osmo-bsc-meas-utils', 'osmo-sip-connector' ]:
file { '/tmp/osmo-sip-connector_1.3.0_amd64.deb':
source => 'puppet:///modules/rhizo_base/osmo-sip-connector_1.3.0_amd64.deb',
}
package { [ 'osmo-sip-connector' ]:
ensure => '1.3.0',
require => Class['rhizo_base::apt'],
notify => [ Exec['hlr_pragma_wal'],
],
}
ensure => 'installed'
}