diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-07-10 04:52:31 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-07-10 04:52:31 +0200 |
commit | b827a9f97dcc88f4b9e23d656d7325455eb33848 (patch) | |
tree | 46b31e833f34b598434575e83a2e63722afc5ab0 /units/gentoo | |
parent | 3f6c78dcebdc0904d3b614da07e9ec8d84de2532 (diff) |
units: turn shutdown dependencies from Requires into Wants to make things a bit more robust
Diffstat (limited to 'units/gentoo')
-rw-r--r-- | units/gentoo/halt.service | 2 | ||||
-rw-r--r-- | units/gentoo/poweroff.service | 2 | ||||
-rw-r--r-- | units/gentoo/reboot.service | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/units/gentoo/halt.service b/units/gentoo/halt.service index 19ead8a315..28db813fb3 100644 --- a/units/gentoo/halt.service +++ b/units/gentoo/halt.service @@ -8,7 +8,7 @@ [Unit] Description=Halt DefaultDependencies=no -Requires=shutdown.target killall.service +Wants=shutdown.target killall.service After=shutdown.target killall.service Conflicts=dev-hugepages.automount dev-mqueue.automount proc-sys-fs-binfmt_misc.automount sys-kernel-debug.automount sys-kernel-security.automount diff --git a/units/gentoo/poweroff.service b/units/gentoo/poweroff.service index 9ceb205b05..da6f48f749 100644 --- a/units/gentoo/poweroff.service +++ b/units/gentoo/poweroff.service @@ -8,7 +8,7 @@ [Unit] Description=Power-Off DefaultDependencies=no -Requires=shutdown.target killall.service +Wants=shutdown.target killall.service After=shutdown.target killall.service Conflicts=dev-hugepages.automount dev-mqueue.automount proc-sys-fs-binfmt_misc.automount sys-kernel-debug.automount sys-kernel-security.automount diff --git a/units/gentoo/reboot.service b/units/gentoo/reboot.service index c223e6c26f..a0f3575385 100644 --- a/units/gentoo/reboot.service +++ b/units/gentoo/reboot.service @@ -8,7 +8,7 @@ [Unit] Description=Reboot DefaultDependencies=no -Requires=shutdown.target killall.service +Wants=shutdown.target killall.service After=shutdown.target killall.service Conflicts=dev-hugepages.automount dev-mqueue.automount proc-sys-fs-binfmt_misc.automount sys-kernel-debug.automount sys-kernel-security.automount |