SGSN: For sites using osmo-latest, ensure rhizo version

This installs a rhizo build of the sgsn with the Radio Priority Patch
Also force install deps.
This commit is contained in:
Monocots 2020-10-13 08:53:20 +00:00
parent 893ba49e68
commit 5f5eaf1fb5

View file

@ -141,8 +141,22 @@ class rhizo_base::openbsc {
notify => Service['osmo-sgsn'],
}
$sgsn_version = $repo ? {
'latest' => '1.6.0+rhizo1',
'nightly' => 'latest',
default => 'installed',
}
package { [ 'osmo-sgsn' ]:
ensure => 'installed',
ensure => $sgsn_version,
require => Class['rhizo_base::apt'],
}
package { [ 'libosmo-gsup-client0' ]:
ensure => 'latest',
require => Class['rhizo_base::apt'],
}
package { [ 'libosmocore' ]:
ensure => 'latest',
require => Class['rhizo_base::apt'],
}
}