From 888b4c34bd605598b10038778aa6f0b2e5230e88 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Mon, 24 Mar 2025 11:51:58 +0100 Subject: [PATCH] [core] install core deps (debian / ubuntu) (#3366) * [core] install core deps (debian / ubuntu) Installed Core Deps "sudo, curl, mc" on debian / ubuntu based lxc's * Update install.func --- misc/install.func | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/misc/install.func b/misc/install.func index 84f416a41..d952c7480 100644 --- a/misc/install.func +++ b/misc/install.func @@ -211,6 +211,11 @@ EOF $STD apt-get -o Dpkg::Options::="--force-confold" -y dist-upgrade rm -rf /usr/lib/python3.*/EXTERNALLY-MANAGED msg_ok "Updated Container OS" + + msg_info "Installing core dependencies" + $STD apt-get update + $STD apt-get install -y sudo curl mc + msg_ok "Core dependencies installed" } # This function modifies the message of the day (motd) and SSH settings