From 0dbdc8cbf3220d80bea1ea54d10f4ec95d6948d6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jo=C3=A3o=20Pedro=20Fonseca?= Date: Wed, 20 Apr 2022 23:06:26 +0100 Subject: [PATCH 1/1] Fixes Bug 1993 -substitutes NTP with Chrony MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Change-Id: Ife2fd73ee18165b7b869e15ceee1cdd0b1b75dbc Signed-off-by: João Pedro Fonseca --- jenkins/ci-pipelines/ci_stage_3.groovy | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/jenkins/ci-pipelines/ci_stage_3.groovy b/jenkins/ci-pipelines/ci_stage_3.groovy index 4141f8d4..44117ade 100644 --- a/jenkins/ci-pipelines/ci_stage_3.groovy +++ b/jenkins/ci-pipelines/ci_stage_3.groovy @@ -450,10 +450,10 @@ node("${params.NODE}") { // Force time sync to avoid clock drift and invalid certificates sshCommand remote: remote, command: """ sudo apt update - sudo apt install -y ntp - sudo service ntp stop - sudo ntpd -gq - sudo service ntp start + sudo apt install -y chrony + sudo service chrony stop + sudo chrony -vq + sudo service chrony start """ sshCommand remote: remote, command: """ -- 2.25.1