From 88ce17b6e1454e1d763b218a7db17e340d3d38b2 Mon Sep 17 00:00:00 2001 From: koral Date: Tue, 21 Apr 2015 16:28:08 +0000 Subject: sslh: argument to -F can no longer be separated from the option by a space --- nixos/modules/services/networking/sslh.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/networking/sslh.nix b/nixos/modules/services/networking/sslh.nix index e251571dca31..c87fe914df8b 100644 --- a/nixos/modules/services/networking/sslh.nix +++ b/nixos/modules/services/networking/sslh.nix @@ -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}"; }; -- cgit 1.4.1