diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2011-03-01 21:19:11 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2011-03-01 21:19:11 +0100 |
commit | f2463372c9e35cf640f1b0ccede0314a239b0d25 (patch) | |
tree | d0136965860008a32e72bfac7442bc35d694758c /package/privoxy | |
parent | 72a7d18f2fa0330212333dd95c18f2278c021cee (diff) |
fix startup scripts, when variable is not set in /etc/rc.conf
Diffstat (limited to 'package/privoxy')
-rw-r--r-- | package/privoxy/files/privoxy.init | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/privoxy/files/privoxy.init b/package/privoxy/files/privoxy.init index 3f4bd6021..2254ee1c6 100644 --- a/package/privoxy/files/privoxy.init +++ b/package/privoxy/files/privoxy.init @@ -6,7 +6,7 @@ case $1 in autostop) ;; autostart) - [[ $privoxy = NO ]] && exit 0 + test x"${privoxy:-NO}" = x"NO" && exit 0 exec sh $0 start ;; start) |