diff options
author | nils <nils@pkgsrc.org> | 2015-07-19 16:49:41 +0000 |
---|---|---|
committer | nils <nils@pkgsrc.org> | 2015-07-19 16:49:41 +0000 |
commit | 1b94db6431e9c4144ade0b9769208f6bccec8228 (patch) | |
tree | c2774e4bf46d1a7db98f1587a7821eaa03edb98c /net | |
parent | cce7a40868c84f184a928c71e791c4b091140ed2 (diff) | |
download | pkgsrc-1b94db6431e9c4144ade0b9769208f6bccec8228.tar.gz |
Since sslh-1.17, argument to -F can no longer be separated from
the option by a space, e.g. must be -Ffoo.cfg.
Otherwise, /etc/rc.d/sslh start|stop|... will do nothing.
Diffstat (limited to 'net')
-rw-r--r-- | net/sslh/files/sslh.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/sslh/files/sslh.sh b/net/sslh/files/sslh.sh index e01d495d9a2..a8b8fb27c19 100644 --- a/net/sslh/files/sslh.sh +++ b/net/sslh/files/sslh.sh @@ -1,6 +1,6 @@ #!@RCD_SCRIPTS_SHELL@ # -# $NetBSD: sslh.sh,v 1.1 2013/11/08 13:33:55 obache Exp $ +# $NetBSD: sslh.sh,v 1.2 2015/07/19 16:49:41 nils Exp $ # # PROVIDE: sslh # REQUIRE: DAEMON @@ -16,7 +16,7 @@ pidfile="@VARBASE@/run/${name}.pid" command_args="-P ${pidfile}" if [ -f @PKG_SYSCONFDIR@/sslh.cfg ]; then - command_args="${command_args} -F @PKG_SYSCONFDIR@/sslh.cfg" + command_args="${command_args} -F@PKG_SYSCONFDIR@/sslh.cfg" fi if [ -f /etc/rc.subr -a -f /etc/rc.conf -a -f /etc/rc.d/DAEMON ]; then |