diff --git a/services/etc/init/netdnative.cfg b/services/etc/init/netdnative.cfg index 3268d8c8a2cdb14b15be6a4f55efad56626ffa33..fa95cb0526e08413d70a635e883961d3805a53a1 100755 --- a/services/etc/init/netdnative.cfg +++ b/services/etc/init/netdnative.cfg @@ -1,9 +1,8 @@ { "jobs" : [{ - "name" : "boot", + "name" : "services:netdnative", "cmds" : [ - "exec /system/bin/sleep 4", - "start netdnative" + "exec /system/bin/sleep 4" ] } ], @@ -11,7 +10,10 @@ "name" : "netdnative", "path" : ["/system/bin/sa_main", "/system/profile/netdnative.xml"], "uid" : "root", - "gid" : ["root", "shell"] + "gid" : ["root", "shell"], + "jobs" : { + "on-start" : "services:netdnative" + } } ] } diff --git a/services/etc/init/netmanager_base.cfg b/services/etc/init/netmanager_base.cfg index 908ede72e4f471a6ff8ef4a0a27daf2ad900bb5f..40107c8537c1d0f1bc1d00275bf3f917552f9904 100755 --- a/services/etc/init/netmanager_base.cfg +++ b/services/etc/init/netmanager_base.cfg @@ -1,9 +1,8 @@ { "jobs" : [{ - "name" : "boot", + "name" : "services:netmanager", "cmds" : [ - "exec /system/bin/sleep 4", - "start netmanager" + "exec /system/bin/sleep 4" ] } ], @@ -11,7 +10,10 @@ "name" : "netmanager", "path" : ["/system/bin/sa_main", "/system/profile/netmanager.xml"], "uid" : "system", - "gid" : ["system", "shell"] + "gid" : ["system", "shell"], + "jobs" : { + "on-start" : "services:netmanager" + } } ] }