summaryrefslogtreecommitdiffstats
path: root/eos_downloader/cli/get/commands.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-08 08:23:31 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-08 08:23:39 +0000
commitfce0b7f16de0c9fb29edcb923b63cd3b6db05f91 (patch)
tree915d54fc6a6353ffb324b7fd19e8c2e70a341857 /eos_downloader/cli/get/commands.py
parentReleasing debian version 0.9.0-1. (diff)
downloadeos-downloader-fce0b7f16de0c9fb29edcb923b63cd3b6db05f91.tar.xz
eos-downloader-fce0b7f16de0c9fb29edcb923b63cd3b6db05f91.zip
Merging upstream version 0.10.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'eos_downloader/cli/get/commands.py')
-rw-r--r--eos_downloader/cli/get/commands.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/eos_downloader/cli/get/commands.py b/eos_downloader/cli/get/commands.py
index b4525fe..498473a 100644
--- a/eos_downloader/cli/get/commands.py
+++ b/eos_downloader/cli/get/commands.py
@@ -128,6 +128,7 @@ def eos(
console = Console()
# Get from Context
token = ctx.obj["token"]
+ is_latest: bool = False
if token is None or token == "":
console.print(
"❗ Token is unset ! Please configure ARISTA_TOKEN or use --token option",
@@ -156,6 +157,7 @@ def eos(
my_download.authenticate()
elif latest:
+ is_latest = True
my_download = eos_downloader.eos.EOSDownloader(
image=image_type,
software="EOS",
@@ -180,7 +182,7 @@ def eos(
my_download.download_local(file_path=output, checksum=True)
if import_docker:
- my_download.docker_import(image_name=docker_name)
+ my_download.docker_import(image_name=docker_name, is_latest=is_latest)
console.print("✅ processing done !")
sys.exit(0)