Fix bug 816
This pins the installed version of Juju to 2.5, which matches the pinned
version of libjuju used by N2VC. The mismatch is causing issues
deploying charms with new installs.
Change-Id: Ia831b7735511172a64e6e691ce87848dc5b95ae4
Signed-off-by: Adam Israel <adam.israel@canonical.com>
diff --git a/installers/full_install_osm.sh b/installers/full_install_osm.sh
index ffeb960..167ca87 100755
--- a/installers/full_install_osm.sh
+++ b/installers/full_install_osm.sh
@@ -630,7 +630,7 @@
function install_juju() {
echo "Installing juju"
- sudo snap install juju --classic
+ sudo snap install juju --classic --channel=2.5/stable
[ -z "$INSTALL_NOLXD" ] && sudo dpkg-reconfigure -p medium lxd
echo "Finished installation of juju"
return 0