From dc982505a0beaca04f30d7d2d16901cec4a51406 Mon Sep 17 00:00:00 2001 From: Ricardo Martins Date: Thu, 28 Jan 2016 11:50:57 +0000 Subject: [PATCH] ptpd: hide harmless killall error messages. --- rules/ptpd/fs/etc/rc.d/ptpd | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rules/ptpd/fs/etc/rc.d/ptpd b/rules/ptpd/fs/etc/rc.d/ptpd index 5ccfc8f..ecbd561 100644 --- a/rules/ptpd/fs/etc/rc.d/ptpd +++ b/rules/ptpd/fs/etc/rc.d/ptpd @@ -16,5 +16,6 @@ stop() if [ -c /dev/rtc0 ]; then hwclock -w fi - killall ptpd2 + + killall ptpd2 > /dev/null 2>&1 }