diff options
author | Ludovic Courtès <ludo@gnu.org> | 2020-04-14 23:58:55 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-04-15 00:02:23 +0200 |
commit | 8aa752ba222c3d7ec094bb7947359f75f2a6bb2c (patch) | |
tree | 102c391acdfb3d2cd61c4d1895356e009500e12d | |
parent | bd4c345ef7ddf3542662fe0872b06393b414a3fc (diff) | |
download | patches-8aa752ba222c3d7ec094bb7947359f75f2a6bb2c.tar patches-8aa752ba222c3d7ec094bb7947359f75f2a6bb2c.tar.gz |
services: shepherd: Increase the PID file timeout to 30s.
When running the installation image off a DVD, early I/O operations are
extremely slow, to the point that something like dbus-daemon would need
~20s to start. This change works around the issue.
Fixes <https://bugs.gnu.org/40572>.
Reported by Florian Pelz <pelzflorian@pelzflorian.de>.
* gnu/services/shepherd.scm (shepherd-configuration-file): Set
%pid-file-timeout to 30.
-rw-r--r-- | gnu/services/shepherd.scm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gnu/services/shepherd.scm b/gnu/services/shepherd.scm index bad089844d..9906ae43c4 100644 --- a/gnu/services/shepherd.scm +++ b/gnu/services/shepherd.scm @@ -291,6 +291,13 @@ and return the resulting '.go' file." (default-environment-variables '("PATH=/run/current-system/profile/bin")) + ;; Booting off a DVD, especially on a slow machine, can make + ;; everything slow. Thus, increase the timeout compared to the + ;; default 5s in the Shepherd 0.7.0. See + ;; <https://bugs.gnu.org/40572>. + ;; XXX: Use something better when the next Shepherd is out. + (set! (@@ (shepherd service) %pid-file-timeout) 30) + ;; Arrange to spawn a REPL if something goes wrong. This is better ;; than a kernel panic. (call-with-error-handling |