diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2014-08-25 12:39:34 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2014-08-25 12:39:34 +0000 |
commit | 730589281ee8940016bacf856d566e7ceab719af (patch) | |
tree | 2ccff2053c741b628b368365c7d2dbe3fe17dfe0 /package/network/services/uhttpd/files/uhttpd.init | |
parent | 7a1f4c50fa052bc40116f9e243ab15f0fba1ebf2 (diff) | |
download | mtk-20170518-730589281ee8940016bacf856d566e7ceab719af.zip mtk-20170518-730589281ee8940016bacf856d566e7ceab719af.tar.gz mtk-20170518-730589281ee8940016bacf856d566e7ceab719af.tar.bz2 |
uhttpd: do not configure TLS parameters if libustream-ssl is not present
A quite frequent problem after sysupgrading from an older, SSL enabled build
is that ustream-ssl is not installed so uhttpd fails to come up again due to
https listening directives in the preserved configuration.
Skip key/cert and ssl listen options when libustream-ssl.so is not present.
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
SVN-Revision: 42284
Diffstat (limited to 'package/network/services/uhttpd/files/uhttpd.init')
-rwxr-xr-x | package/network/services/uhttpd/files/uhttpd.init | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/network/services/uhttpd/files/uhttpd.init b/package/network/services/uhttpd/files/uhttpd.init index 608aa9d..2e94609 100755 --- a/package/network/services/uhttpd/files/uhttpd.init +++ b/package/network/services/uhttpd/files/uhttpd.init @@ -109,7 +109,7 @@ start_instance() config_get UHTTPD_KEY "$cfg" key /etc/uhttpd.key config_get UHTTPD_CERT "$cfg" cert /etc/uhttpd.crt - [ -n "$https" ] && { + [ -f /lib/libustream-ssl.so ] && [ -n "$https" ] && { [ -f "$UHTTPD_CERT" -a -f "$UHTTPD_KEY" ] || { config_foreach generate_keys cert } |