summaryrefslogtreecommitdiffstats
path: root/core/modules/dnbd3-proxy-mode/data/opt/openslx/scripts/systemd-dnbd3_proxy
blob: 331bb4f747d76779d9051d92f8a9cd4caee8b4b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/ash

ERRLOG="/run/dnbd3-proxy.err"

if [ -s "$ERRLOG" ]; then
	exec $(which dnbd3-server) -n --errormsg "$(cat "$ERRLOG")"
fi

exec $(which dnbd3-server) -n -c /etc/dnbd3-server

exit 1