diff options
Diffstat (limited to 'net/sslh/files/sslh.init')
-rw-r--r-- | net/sslh/files/sslh.init | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/net/sslh/files/sslh.init b/net/sslh/files/sslh.init index 6e71a5394..401beb689 100644 --- a/net/sslh/files/sslh.init +++ b/net/sslh/files/sslh.init @@ -47,6 +47,9 @@ start_instance() { # J) http parameter config_get val "${section}" http [ -n "${val}" ] && append args "--http ${val}" + # K) transparent parameter + config_get_bool val "${section}" transparent 0 + [ "${val}" -ne 0 ] && append args "--transparent" # Defaults were removed for --user and --pidfile options # in sslh 1.11; Define them here instead. |