Skip to content
Snippets Groups Projects
Commit 1527f96c authored by Jo-Philipp Wich's avatar Jo-Philipp Wich
Browse files

busybox: do not abort sysntpd init if enable_server is unset, that variable...

busybox: do not abort sysntpd init if enable_server is unset, that variable just controls the server part for relaying NTP

SVN-Revision: 38936
parent 387761e2
No related branches found
No related tags found
No related merge requests found
...@@ -19,7 +19,7 @@ start_service() { ...@@ -19,7 +19,7 @@ start_service() {
return 1 return 1
} }
[ $enable_server -eq 0 -a -z "$server" ] && return [ -z "$server" ] && return
procd_open_instance procd_open_instance
procd_set_param command "$PROG" -n procd_set_param command "$PROG" -n
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment