about summary refs log tree commit diff
path: root/nixos/modules/virtualisation
diff options
context:
space:
mode:
authorCraig Younkins <cyounkins@gmail.com>2018-11-25 07:33:22 -0500
committerzimbatm <zimbatm@zimbatm.com>2018-11-25 13:33:22 +0100
commiteff461c8ef17210cfd7cf50fe8c057f581663436 (patch)
tree8278422459bf71346864c644812ccf09001fabca /nixos/modules/virtualisation
parent377e0e9b0fd01f3415ed21620a7913521e693600 (diff)
downloadnixlib-eff461c8ef17210cfd7cf50fe8c057f581663436.tar
nixlib-eff461c8ef17210cfd7cf50fe8c057f581663436.tar.gz
nixlib-eff461c8ef17210cfd7cf50fe8c057f581663436.tar.bz2
nixlib-eff461c8ef17210cfd7cf50fe8c057f581663436.tar.lz
nixlib-eff461c8ef17210cfd7cf50fe8c057f581663436.tar.xz
nixlib-eff461c8ef17210cfd7cf50fe8c057f581663436.tar.zst
nixlib-eff461c8ef17210cfd7cf50fe8c057f581663436.zip
treewide: systemd timeout arguments to use infinity instead of 0 (#50934)
Fixes https://github.com/NixOS/nixpkgs/issues/49700
Diffstat (limited to 'nixos/modules/virtualisation')
-rw-r--r--nixos/modules/virtualisation/google-compute-image.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/virtualisation/google-compute-image.nix b/nixos/modules/virtualisation/google-compute-image.nix
index 795858e5eae2..f9ebe7696523 100644
--- a/nixos/modules/virtualisation/google-compute-image.nix
+++ b/nixos/modules/virtualisation/google-compute-image.nix
@@ -165,7 +165,7 @@ in
       ExecStop = "${gce}/bin/google_metadata_script_runner --debug --script-type shutdown";
       Type = "oneshot";
       RemainAfterExit = true;
-      TimeoutStopSec = 0;
+      TimeoutStopSec = "infinity";
     };
   };