From 2f51432e40474e40f6d3c9be30dd4cc359b62f8c Mon Sep 17 00:00:00 2001 From: "elston.lewis" Date: Wed, 29 Nov 2023 12:46:56 +0100 Subject: [PATCH] Added apt update into ntp script --- scripts/linux/ntp.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/linux/ntp.sh b/scripts/linux/ntp.sh index 14981e4..ed3abe0 100644 --- a/scripts/linux/ntp.sh +++ b/scripts/linux/ntp.sh @@ -2,5 +2,6 @@ set -e if [[ "$1" == "debian12" ]]; then + chroot /mnt/ apt update -y chroot /mnt/ apt install chrony -y fi