about summary refs log tree commit diff
path: root/nixos/modules/security
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2016-09-06 23:02:07 +0200
committerGitHub <noreply@github.com>2016-09-06 23:02:07 +0200
commit9190dbcc0e4f42487886916a0309aa3236d76df6 (patch)
tree20731fc56063385852762662bfe49206d64e3117 /nixos/modules/security
parentc5e9049ac30948529114f3495d0145d3ac2689de (diff)
parente84b803300033a030907f351b5a5c6fa671b7bf6 (diff)
Merge pull request #18366 from groxxda/acme-loop
security.acme: require networking for client, remove loop without fallbackHost
Diffstat (limited to 'nixos/modules/security')
-rw-r--r--nixos/modules/security/acme.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/nixos/modules/security/acme.nix b/nixos/modules/security/acme.nix
index 3dac558b9537d..45e8f64046b06 100644
--- a/nixos/modules/security/acme.nix
+++ b/nixos/modules/security/acme.nix
@@ -166,7 +166,8 @@ in
                           ++ concatLists (mapAttrsToList (name: root: [ "-d" (if root == null then name else "${name}:${root}")]) data.extraDomains);
                 acmeService = {
                   description = "Renew ACME Certificate for ${cert}";
-                  after = [ "network.target" ];
+                  after = [ "network.target" "network-online.target" ];
+                  wants = [ "network-online.target" ];
                   serviceConfig = {
                     Type = "oneshot";
                     SuccessExitStatus = [ "0" "1" ];