From 471c5b113bf5035c1681b794774cf3e912198b4e Mon Sep 17 00:00:00 2001 From: "elston.lewis" Date: Wed, 29 Nov 2023 12:32:27 +0100 Subject: [PATCH] Updated ntp script for debian12 --- scripts/linux/ntp.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/linux/ntp.sh b/scripts/linux/ntp.sh index 2211eff..14981e4 100644 --- a/scripts/linux/ntp.sh +++ b/scripts/linux/ntp.sh @@ -1,6 +1,6 @@ #!/bin/bash set -e -if [[ ! "$1" == "debian12" ]]; then +if [[ "$1" == "debian12" ]]; then chroot /mnt/ apt install chrony -y fi