From: nbd Date: Fri, 21 Mar 2014 15:54:18 +0000 (+0000) Subject: procd: add a PROCD_DEBUG variable that will dump the ubus calls from init scripts... X-Git-Url: https://git.enpas.org/?a=commitdiff_plain;h=7421f1e13abb639b8d6daa3e53cdf2d36cbdb98f;p=openwrt.git procd: add a PROCD_DEBUG variable that will dump the ubus calls from init scripts to stderr Signed-off-by: Felix Fietkau git-svn-id: svn://svn.openwrt.org/openwrt/trunk@39983 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/package/system/procd/files/procd.sh b/package/system/procd/files/procd.sh index 9a37343484..c5dc3c65cb 100644 --- a/package/system/procd/files/procd.sh +++ b/package/system/procd/files/procd.sh @@ -50,6 +50,7 @@ _procd_wrapper() { _procd_ubus_call() { local cmd="$1" + [ -n "$PROCD_DEBUG" ] && json_dump >&2 ubus call service "$cmd" "$(json_dump)" json_cleanup }