#!/sbin/openrc-run
name="tlstunnel"
description="TLS reverse proxy"
supervisor=supervise-daemon
CERTSTORE=/var/lib/tlstunnel
command=/usr/bin/tlstunnel
command_user="tlstunnel:tlstunnel"
start_pre() {
[ -n "$output_log" ] && checkpath -f "$output_log" \
-m 644 -o $command_user
[ -n "$error_log" ] && checkpath -f "$error_log" \
-m 644 -o $command_user
checkpath -d "$CERTSTORE" -m 755 -o $command_user
}