summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorkoral <koral@mailoo.org>2015-04-21 16:28:08 +0000
committerkoral <koral@mailoo.org>2015-04-21 16:29:25 +0000
commit88ce17b6e1454e1d763b218a7db17e340d3d38b2 (patch)
tree264704fb68c0f171a810ed8013a483d43ff810d1 /nixos
parent7937bd703913822c38e85d0d385926449f8cc88d (diff)
downloadnixpkgs-88ce17b6e1454e1d763b218a7db17e340d3d38b2.tar
nixpkgs-88ce17b6e1454e1d763b218a7db17e340d3d38b2.tar.gz
nixpkgs-88ce17b6e1454e1d763b218a7db17e340d3d38b2.tar.bz2
nixpkgs-88ce17b6e1454e1d763b218a7db17e340d3d38b2.tar.lz
nixpkgs-88ce17b6e1454e1d763b218a7db17e340d3d38b2.tar.xz
nixpkgs-88ce17b6e1454e1d763b218a7db17e340d3d38b2.tar.zst
nixpkgs-88ce17b6e1454e1d763b218a7db17e340d3d38b2.zip
sslh: argument to -F can no longer be separated from the option by a space
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/networking/sslh.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/networking/sslh.nix b/nixos/modules/services/networking/sslh.nix
index e251571dca3..c87fe914df8 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}";
     };