summary refs log tree commit diff
path: root/nixos/modules/services/networking/softether.nix
diff options
context:
space:
mode:
authorHsiang-Cheng Yang <rick68@users.noreply.github.com>2019-05-03 01:38:37 +0800
committerRenaud <c0bw3b@users.noreply.github.com>2019-05-02 19:38:37 +0200
commite775587d63c57308b9943fb225bc1d2bcb317678 (patch)
tree0e47ca392460011a4a2d5dbe88c22bd400085cb7 /nixos/modules/services/networking/softether.nix
parent7689c69813d9f47699a47a282c1ec93a3df4cb48 (diff)
downloadnixpkgs-e775587d63c57308b9943fb225bc1d2bcb317678.tar
nixpkgs-e775587d63c57308b9943fb225bc1d2bcb317678.tar.gz
nixpkgs-e775587d63c57308b9943fb225bc1d2bcb317678.tar.bz2
nixpkgs-e775587d63c57308b9943fb225bc1d2bcb317678.tar.lz
nixpkgs-e775587d63c57308b9943fb225bc1d2bcb317678.tar.xz
nixpkgs-e775587d63c57308b9943fb225bc1d2bcb317678.tar.zst
nixpkgs-e775587d63c57308b9943fb225bc1d2bcb317678.zip
softether: 4.25 -> 4.29 (#60665)
* softether: 4.25 -> 4.29

* softether_4_29: restrict to x86_64-linux
Does not build on aarch64 because of upstream "-m64" compile flag
Diffstat (limited to 'nixos/modules/services/networking/softether.nix')
-rw-r--r--nixos/modules/services/networking/softether.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/nixos/modules/services/networking/softether.nix b/nixos/modules/services/networking/softether.nix
index 65df93a00da..0046dcd366f 100644
--- a/nixos/modules/services/networking/softether.nix
+++ b/nixos/modules/services/networking/softether.nix
@@ -70,6 +70,8 @@ in
 
       systemd.services."softether-init" = {
         description = "SoftEther VPN services initial task";
+        after = [ "keys.target" ];
+        wants = [ "keys.target" ];
         wantedBy = [ "network.target" ];
         serviceConfig = {
           Type = "oneshot";