summary refs log tree commit diff
path: root/nixos/modules/services/monitoring/das_watchdog.nix
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2017-03-09 16:14:17 +0100
committerGregor Kleen <gkleen@yggdrasil.li>2017-03-09 16:14:17 +0100
commit899fd868ea49d9a9835821f60ea58e8e701e280e (patch)
treeb3c3a7f382a3583d19d5c89c890df239f559e0fa /nixos/modules/services/monitoring/das_watchdog.nix
parent4d13b5d2018a2e14be368629d6c7b613a6ab16f5 (diff)
downloadnixlib-899fd868ea49d9a9835821f60ea58e8e701e280e.tar
nixlib-899fd868ea49d9a9835821f60ea58e8e701e280e.tar.gz
nixlib-899fd868ea49d9a9835821f60ea58e8e701e280e.tar.bz2
nixlib-899fd868ea49d9a9835821f60ea58e8e701e280e.tar.lz
nixlib-899fd868ea49d9a9835821f60ea58e8e701e280e.tar.xz
nixlib-899fd868ea49d9a9835821f60ea58e8e701e280e.tar.zst
nixlib-899fd868ea49d9a9835821f60ea58e8e701e280e.zip
das_watchdog: fix service type
Diffstat (limited to 'nixos/modules/services/monitoring/das_watchdog.nix')
-rw-r--r--nixos/modules/services/monitoring/das_watchdog.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/monitoring/das_watchdog.nix b/nixos/modules/services/monitoring/das_watchdog.nix
index 6e2653836d5e..88ca3a9227d2 100644
--- a/nixos/modules/services/monitoring/das_watchdog.nix
+++ b/nixos/modules/services/monitoring/das_watchdog.nix
@@ -25,7 +25,7 @@ in {
       wantedBy = [ "multi-user.target" ];
       serviceConfig = {
         User = "root";
-        Type = "oneshot";
+        Type = "simple";
         ExecStart = "${das_watchdog}/bin/das_watchdog";
         RemainAfterExit = true;
       };