From b31a6c4659e302c1fb38aa5c796309bab9b305fa Mon Sep 17 00:00:00 2001 From: mboelen Date: Mon, 13 Oct 2014 22:39:16 +0200 Subject: [PATCH] Textual changes --- include/tests_time | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/tests_time b/include/tests_time index 475a5d71..f83d6b71 100644 --- a/include/tests_time +++ b/include/tests_time @@ -56,21 +56,21 @@ FOUND=1; NTPD_RUNNING=1; NTP_DAEMON_RUNNING=1; NTP_CONFIG_TYPE_DAEMON=1 NTP_DAEMON="ntpd" logtext "Result: found running NTP daemon in process list" - Display --indent 4 --text "- Daemon: ntpd" --result FOUND --color GREEN + Display --indent 2 --text "- NTP daemon found: ntpd" --result FOUND --color GREEN fi # Check time daemon (eg NetBSD) IsRunning timed if [ ${RUNNING} -eq 1 ]; then FOUND=1; NTP_DAEMON_RUNNING=1; NTP_CONFIG_TYPE_DAEMON=1; NTP_DAEMON="timed" - Display --indent 4 --text "- Daemon: timed" --result FOUND --color GREEN + Display --indent 2 --text "- NTP daemon found: timed" --result FOUND --color GREEN fi # Check time daemon (eg DragonFly BSD) IsRunning dntpd if [ ${RUNNING} -eq 1 ]; then FOUND=1; NTP_DAEMON_RUNNING=1; NTP_CONFIG_TYPE_DAEMON=1; NTP_DAEMON="dntpd" - Display --indent 4 --text "- Daemon dntpd" --result FOUND --color GREEN + Display --indent 2 --text "- NTP daemon found: dntpd" --result FOUND --color GREEN fi # Check timedate daemon (systemd) @@ -78,7 +78,7 @@ FIND=`${TIMEDATECTL} status | grep "NTP enabled: yes"` if [ ! "${FIND}" = "" ]; then FOUND=1; NTP_DAEMON_RUNNING=1; NTP_CONFIG_TYPE_DAEMON=1; NTP_DAEMON="timedated" - Display --indent 4 --text "- Daemon: timedated" --result "FOUND" --color GREEN + Display --indent 2 --text "- NTP daemon found: timedated" --result "FOUND" --color GREEN fi fi