rc.common: when reloading a service using procd, fall back to calling start instead of restart

This avoids unnecessary service restarts

Signed-off-by: Felix Fietkau <nbd@openwrt.org>

SVN-Revision: 41490
This commit is contained in:
Felix Fietkau 2014-07-03 06:21:49 +00:00
parent eef5698535
commit d288a7903d
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ ${INIT_TRACE:+set -x}
if eval "type reload_service" 2>/dev/null >/dev/null; then
reload_service "$@"
else
restart
start
fi
}