summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorEdward Tjörnhammar <ed@cflags.cc>2015-04-23 21:35:46 +0200
committerEdward Tjörnhammar <ed@cflags.cc>2015-04-23 21:35:46 +0200
commit4ea47155af1864e3cfc300897c5dbede7daec969 (patch)
tree79c2c3e72fa7fc91a2c1c2e377e5c3eaaa9c2851 /nixos
parente92c84402d67178cf5758f97ef9f7e7b1360f868 (diff)
parent88ce17b6e1454e1d763b218a7db17e340d3d38b2 (diff)
downloadnixpkgs-4ea47155af1864e3cfc300897c5dbede7daec969.tar
nixpkgs-4ea47155af1864e3cfc300897c5dbede7daec969.tar.gz
nixpkgs-4ea47155af1864e3cfc300897c5dbede7daec969.tar.bz2
nixpkgs-4ea47155af1864e3cfc300897c5dbede7daec969.tar.lz
nixpkgs-4ea47155af1864e3cfc300897c5dbede7daec969.tar.xz
nixpkgs-4ea47155af1864e3cfc300897c5dbede7daec969.tar.zst
nixpkgs-4ea47155af1864e3cfc300897c5dbede7daec969.zip
Merge pull request #7498 from k0ral/sslh
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}";
     };