mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +00:00
nixos/openvpn: add extraArgs option (#339016)
This commit is contained in:
commit
7398438255
|
@ -64,7 +64,7 @@ let
|
||||||
|
|
||||||
path = [ pkgs.iptables pkgs.iproute2 pkgs.nettools ];
|
path = [ pkgs.iptables pkgs.iproute2 pkgs.nettools ];
|
||||||
|
|
||||||
serviceConfig.ExecStart = "@${openvpn}/sbin/openvpn openvpn --suppress-timestamps --config ${configFile}";
|
serviceConfig.ExecStart = "@${openvpn}/sbin/openvpn openvpn --suppress-timestamps --config ${configFile} ${cfg.extraArgs}";
|
||||||
serviceConfig.Restart = "always";
|
serviceConfig.Restart = "always";
|
||||||
serviceConfig.Type = "notify";
|
serviceConfig.Type = "notify";
|
||||||
};
|
};
|
||||||
|
@ -181,6 +181,15 @@ in
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
extraArgs = mkOption {
|
||||||
|
default = null;
|
||||||
|
type = listOf str;
|
||||||
|
description = ''
|
||||||
|
Additional command line arguments to pass to this OpenVPN instance.
|
||||||
|
'';
|
||||||
|
apply = lib.escapeShellArgs;
|
||||||
|
};
|
||||||
|
|
||||||
authUserPass = mkOption {
|
authUserPass = mkOption {
|
||||||
default = null;
|
default = null;
|
||||||
description = ''
|
description = ''
|
||||||
|
|
Loading…
Reference in a new issue