From ae8a7e479758e7dbfd14a288bb8346bbbf7acec1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Ag=C3=BCero?= Date: Thu, 26 Dec 2024 18:11:34 +0100 Subject: [PATCH] Remove Citadel from ign-docker-env tool MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Carlos Agüero --- plugins/ign-docker-env.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/plugins/ign-docker-env.py b/plugins/ign-docker-env.py index e8c01d8..6db535c 100644 --- a/plugins/ign-docker-env.py +++ b/plugins/ign-docker-env.py @@ -33,8 +33,8 @@ --vol $LOCAL_PATH:$CONTAINER_PATH Load volumes into Docker container (separate multiple volumes with '::') Notes: - Valid inputs for IGN_RELEASE are 'citadel' and 'fortress'. - Valid inputs for the --linux-distro arg are 'ubuntu:bionic' or 'ubuntu:focal'. + Valid inputs for IGN_RELEASE are: 'fortress'. + Valid inputs for the --linux-distro arg are: 'ubuntu:focal'. """ import os @@ -49,10 +49,8 @@ # TODO: use a yaml file to get this information # keep track of all valid versions and their default linux distro -bionic = 'ubuntu:bionic' focal = 'ubuntu:focal' IGN_VERSIONS = { - 'citadel': bionic, 'fortress': focal }