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

koral 88ce17b6 7937bd70

Changed files
+1 -1
nixos
modules
services
networking
+1 -1
nixos/modules/services/networking/sslh.nix
···
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}";
};