diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2013-11-28 11:28:40 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2013-11-28 11:28:40 +0000 |
commit | 1527f96ca6e196fa17c96fdb3ae520158fa5943f (patch) | |
tree | 830c1de3c18166c799cbc281c48c7134abf5c7b6 | |
parent | 387761e2fc301ae98e30037d6c9065706ee6662d (diff) | |
download | upstream-1527f96ca6e196fa17c96fdb3ae520158fa5943f.tar.gz upstream-1527f96ca6e196fa17c96fdb3ae520158fa5943f.tar.bz2 upstream-1527f96ca6e196fa17c96fdb3ae520158fa5943f.zip |
busybox: do not abort sysntpd init if enable_server is unset, that variable just controls the server part for relaying NTP
SVN-Revision: 38936
-rwxr-xr-x | package/utils/busybox/files/sysntpd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/utils/busybox/files/sysntpd b/package/utils/busybox/files/sysntpd index 6475e04d22..add7762c7f 100755 --- a/package/utils/busybox/files/sysntpd +++ b/package/utils/busybox/files/sysntpd @@ -19,7 +19,7 @@ start_service() { return 1 } - [ $enable_server -eq 0 -a -z "$server" ] && return + [ -z "$server" ] && return procd_open_instance procd_set_param command "$PROG" -n |