sslh: argument to -F can no longer be separated from the option by a space

This commit is contained in:
koral 2015-04-21 16:28:08 +00:00
parent 7937bd7039
commit 88ce17b6e1
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ in
description = "Applicative Protocol Multiplexer (e.g. share SSH and HTTPS on the same port)"; description = "Applicative Protocol Multiplexer (e.g. share SSH and HTTPS on the same port)";
after = [ "network.target" ]; after = [ "network.target" ];
wantedBy = [ "multi-user.target" ]; wantedBy = [ "multi-user.target" ];
serviceConfig.ExecStart = "${pkgs.sslh}/bin/sslh -F ${configFile}"; serviceConfig.ExecStart = "${pkgs.sslh}/bin/sslh -F${configFile}";
serviceConfig.KillMode = "process"; serviceConfig.KillMode = "process";
serviceConfig.PIDFile = "${cfg.pidfile}"; serviceConfig.PIDFile = "${cfg.pidfile}";
}; };