From: Felix Fietkau Date: Sun, 30 Sep 2007 21:13:13 +0000 (+0000) Subject: use ps instead of ps x in the ntpclient hotplug script - busybox doesn't process... X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=86d798c940fae32df82035b440995f9ef0906eb0;p=openwrt%2Fsvn-archive%2Fpackages.git use ps instead of ps x in the ntpclient hotplug script - busybox doesn't process the x SVN-Revision: 9081 --- diff --git a/net/ntpclient/files/ntpclient.hotplug b/net/ntpclient/files/ntpclient.hotplug index a3ce8b859..631d65f56 100644 --- a/net/ntpclient/files/ntpclient.hotplug +++ b/net/ntpclient/files/ntpclient.hotplug @@ -16,7 +16,7 @@ config_cb() { config_get count $cfg count [ "$DONE" = "1" ] && exit 0 - ps x | grep 'bin/[n]tpclient' >&- || { + ps | grep 'bin/[n]tpclient' >&- || { route -n 2>&- | grep '^0.0.0.0' >&- && { /usr/sbin/ntpclient -c ${count:-1} -s -h $hostname -p ${port:-123} 2>&- >&- && DONE=1 }