We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 096b45c commit e43e1e4Copy full SHA for e43e1e4
control-plane.sh
@@ -5,6 +5,7 @@ set -euo pipefail
5
install_scripts=(
6
"scripts/apt.sh"
7
"scripts/swap.sh"
8
+ "scripts/ntp.sh"
9
"scripts/network.sh"
10
"scripts/containerd.sh"
11
"scripts/kubernetes.sh"
node.sh
@@ -18,6 +18,7 @@ fi
18
INSTALL_SCRIPTS=(
19
20
21
22
23
"scripts/storage.sh"
24
scripts/ntp.sh
@@ -0,0 +1,14 @@
1
+#!/bin/bash
2
+
3
+set -euo pipefail
4
+echo "Removing systemd-timesyncd..."
+apt purge systemd-timesyncd
+echo "Installing ntp..."
+apt update
+apt-get install ntpsec ntp
+systemctl status ntp
12
13
+echo "Checking NTP sync..."
14
+ntpq -p
0 commit comments