From f643c1359c1edbe8bb851ce935416e534b234e74 Mon Sep 17 00:00:00 2001 From: David Garcia Date: Fri, 28 May 2021 12:23:44 +0200 Subject: [PATCH] Fix bug 1533: use bionic as default series in proxy charms Xenial is 2 LTS behind the current one. This patch will force bionic rather than Xenial from now on. The current charms do not properly work in Xenial. The best solution will be to fix this bug: https://osm.etsi.org/bugzilla/show_bug.cgi?id=1551 Change-Id: I1a0c466b6151b19a1eaf5d97f0373ab271601f89 Signed-off-by: David Garcia --- n2vc/libjuju.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/n2vc/libjuju.py b/n2vc/libjuju.py index ce1c9df..0e221e2 100644 --- a/n2vc/libjuju.py +++ b/n2vc/libjuju.py @@ -345,7 +345,7 @@ class Libjuju: db_dict: dict = None, progress_timeout: float = None, total_timeout: float = None, - series: str = "xenial", + series: str = "bionic", wait: bool = True, ) -> (Machine, bool): """ -- 2.17.1