From: Zbigniew Jędrzejewski-Szmek Date: Fri, 17 Apr 2015 01:41:18 +0000 (-0400) Subject: units: specify timeouts for more oneshot services X-Git-Tag: v220~267 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b53374f99b619abd90a7c19d69d37a3298b084d5;p=thirdparty%2Fsystemd.git units: specify timeouts for more oneshot services Even trivial service occasionally get stuck, for example when there's a problem with the journal. There's nothing more annoying that looking at the cylon eye for a job with an infinite timeout. Use standard 90s for jobs that do some work, and 30s for those which should be almost instantenous. --- diff --git a/units/systemd-binfmt.service.in b/units/systemd-binfmt.service.in index 34a5d5237b1..d53073ee616 100644 --- a/units/systemd-binfmt.service.in +++ b/units/systemd-binfmt.service.in @@ -24,3 +24,4 @@ ConditionDirectoryNotEmpty=|/run/binfmt.d Type=oneshot RemainAfterExit=yes ExecStart=@rootlibexecdir@/systemd-binfmt +TimeoutSec=90s diff --git a/units/systemd-hwdb-update.service.in b/units/systemd-hwdb-update.service.in index 791528e2b22..7135cff3d9b 100644 --- a/units/systemd-hwdb-update.service.in +++ b/units/systemd-hwdb-update.service.in @@ -21,3 +21,4 @@ ConditionDirectoryNotEmpty=|/etc/udev/hwdb.d/ Type=oneshot RemainAfterExit=yes ExecStart=@rootbindir@/systemd-hwdb update +TimeoutSec=90s diff --git a/units/systemd-machine-id-commit.service.in b/units/systemd-machine-id-commit.service.in index dd765b6608a..cccbf7b626f 100644 --- a/units/systemd-machine-id-commit.service.in +++ b/units/systemd-machine-id-commit.service.in @@ -19,3 +19,4 @@ ConditionPathIsMountPoint=/etc/machine-id Type=oneshot RemainAfterExit=yes ExecStart=@rootlibexecdir@/systemd-machine-id-commit +TimeoutSec=30s diff --git a/units/systemd-modules-load.service.in b/units/systemd-modules-load.service.in index 040a0febe82..9de6d313491 100644 --- a/units/systemd-modules-load.service.in +++ b/units/systemd-modules-load.service.in @@ -24,3 +24,4 @@ ConditionKernelCommandLine=|rd.modules-load Type=oneshot RemainAfterExit=yes ExecStart=@rootlibexecdir@/systemd-modules-load +TimeoutSec=90s diff --git a/units/systemd-random-seed.service.in b/units/systemd-random-seed.service.in index b55844b36fd..115233268dd 100644 --- a/units/systemd-random-seed.service.in +++ b/units/systemd-random-seed.service.in @@ -19,3 +19,4 @@ Type=oneshot RemainAfterExit=yes ExecStart=@rootlibexecdir@/systemd-random-seed load ExecStop=@rootlibexecdir@/systemd-random-seed save +TimeoutSec=30s diff --git a/units/systemd-rfkill@.service.in b/units/systemd-rfkill@.service.in index b48efe5d995..e53bf5fbba9 100644 --- a/units/systemd-rfkill@.service.in +++ b/units/systemd-rfkill@.service.in @@ -20,3 +20,4 @@ Type=oneshot RemainAfterExit=yes ExecStart=@rootlibexecdir@/systemd-rfkill load %I ExecStop=@rootlibexecdir@/systemd-rfkill save %I +TimeoutSec=30s diff --git a/units/systemd-sysctl.service.in b/units/systemd-sysctl.service.in index fa72085f9e9..d784c6426db 100644 --- a/units/systemd-sysctl.service.in +++ b/units/systemd-sysctl.service.in @@ -18,3 +18,4 @@ ConditionPathIsReadWrite=/proc/sys/ Type=oneshot RemainAfterExit=yes ExecStart=@rootlibexecdir@/systemd-sysctl +TimeoutSec=90s diff --git a/units/systemd-sysusers.service.in b/units/systemd-sysusers.service.in index ffd6d7747b5..4d8309ab6b0 100644 --- a/units/systemd-sysusers.service.in +++ b/units/systemd-sysusers.service.in @@ -18,3 +18,4 @@ ConditionNeedsUpdate=/etc Type=oneshot RemainAfterExit=yes ExecStart=@rootbindir@/systemd-sysusers +TimeoutSec=90s