Disable systemd-journald watchdog
Eelco Dolstra committed
Jul 30, 2014 at 17:50 UTC
e3e0ced464e571b0becc65a4b3abf776cf53cca5
1 file changed
+6
delft/common.nix
+6
@@ -97,4 +97,10 @@ with pkgs.lib;
97
fi
98
'';
99
};
100
+
101
+ # Disable the systemd-journald watchdog. The default timeout (1min)
102
+ # can easily be triggered on our slow, heavily-loaded disks. And
103
+ # that may cause services writing to the journal to fail until
104
+ # they're restarted.
105
+ systemd.services.systemd-journald.serviceConfig.WatchdogSec = 0;
106
}