Merge pull request #7498 from k0ral/sslh

sslh: argument to -F can no longer be separated from the option by a space
This commit is contained in:
Edward Tjörnhammar 2015-04-23 21:35:46 +02:00
commit 4ea47155af

View File

@ -81,7 +81,7 @@ in
description = "Applicative Protocol Multiplexer (e.g. share SSH and HTTPS on the same port)";
after = [ "network.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.PIDFile = "${cfg.pidfile}";
};