From b91f8e03619f8990354e0e956b68f021edf5a178 Mon Sep 17 00:00:00 2001 From: Dan Mick Date: Mon, 15 Sep 2025 19:13:27 -0700 Subject: [PATCH] scripts/dashboard/install-cephadm-e2e-deps.sh: Put back DISTRO fcf4dfee46bfafc678a20c769d0473acb6d42af7 removed the setting of DISTRO. Unfortunately one usage of the variable remained in the script. Put back the setting. Signed-off-by: Dan Mick --- scripts/dashboard/install-cephadm-e2e-deps.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/dashboard/install-cephadm-e2e-deps.sh b/scripts/dashboard/install-cephadm-e2e-deps.sh index 459491ef..85f62e7b 100644 --- a/scripts/dashboard/install-cephadm-e2e-deps.sh +++ b/scripts/dashboard/install-cephadm-e2e-deps.sh @@ -45,6 +45,8 @@ sudo usermod -aG libvirt $(id -un) newgrp libvirt # Avoid having to log out and log in for group addition to take effect. sudo systemctl enable --now libvirtd +DISTRO="$(lsb_release -cs)" + if [[ $(command -v docker) == '' ]]; then # Set up docker official repo and install docker. curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg -- 2.47.3