From e1686beaf4306c42f0479ed6a3b76be201c1fb25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Diemer?= <stephane.diemer@ubicast.eu> Date: Tue, 14 Feb 2017 15:20:19 +0100 Subject: [PATCH] Removed NTP_SERVER1 usage. --- tests/test_ntp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_ntp.py b/tests/test_ntp.py index eb4a957e..f35d6cb6 100755 --- a/tests/test_ntp.py +++ b/tests/test_ntp.py @@ -24,7 +24,7 @@ print('Checking NTP server conforms to conf') if os.path.isfile('../utils.py'): es_utils = imp.load_source('es_utils', '../utils.py') conf = es_utils.load_conf() - NTP_SERVER = conf.get('NTP_SERVER') or conf.get('NTP_SERVER1') or 'ntp.ubuntu.com' + NTP_SERVER = conf.get('NTP_SERVER') or 'ntp.ubuntu.com' with open('/etc/ntp.conf', 'r') as f: d = f.read() -- GitLab