From 34f8b6bc66d0b98b38f33aaeb07d0c8b53e04007 Mon Sep 17 00:00:00 2001 From: Adam Israel Date: Fri, 9 Aug 2019 09:24:53 -0400 Subject: [PATCH] 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 --- installers/full_install_osm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installers/full_install_osm.sh b/installers/full_install_osm.sh index ffeb9605..167ca87b 100755 --- a/installers/full_install_osm.sh +++ b/installers/full_install_osm.sh @@ -630,7 +630,7 @@ function install_docker_compose() { 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 -- 2.17.1