From 1ac4c45ea4c7844c8c7f1733531987f4829474d3 Mon Sep 17 00:00:00 2001 From: "elston.lewis" Date: Thu, 2 May 2024 13:42:23 +0200 Subject: [PATCH] Added net-tools clause for ubuntu24.04 --- scripts/linux/net-tools.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/linux/net-tools.sh b/scripts/linux/net-tools.sh index 444c7e1..2638772 100644 --- a/scripts/linux/net-tools.sh +++ b/scripts/linux/net-tools.sh @@ -1,6 +1,6 @@ #!/bin/bash set -e -if [[ "$1" == "debian12" ]]; then +if [[ "$1" == "debian12" ]] || [[ "$1" == "ubuntu24"* ]]; then chroot /mnt/ apt install net-tools -y fi