diff options
author | Andrey Borzenkov <arvidjaar@gmail.com> | 2011-03-10 18:37:45 +0300 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2011-03-10 10:48:20 -0500 |
commit | d83589bf852cc971295c55466d6638a7b40269a2 (patch) | |
tree | e765bc1994b46f5e8823c4bb6dd35e7519e746ff | |
parent | a9b0d6b5c655da96783851d5304c4d800d4e4553 (diff) | |
download | initscripts-d83589bf852cc971295c55466d6638a7b40269a2.tar initscripts-d83589bf852cc971295c55466d6638a7b40269a2.tar.gz initscripts-d83589bf852cc971295c55466d6638a7b40269a2.tar.bz2 initscripts-d83589bf852cc971295c55466d6638a7b40269a2.tar.xz initscripts-d83589bf852cc971295c55466d6638a7b40269a2.zip |
initscripts: execute fedora-sysinit-unhack after sysinit.target
Currently both are started early during boot and in the best case
are no-op, in the worst - hack is executed after unhack and leaves
/dev/.in_sysinit hanging around forever. Make sure unhack is executed
after hack and after sysinit.target as name suggests.
Signed-off-by: Andrey Borzenkov <arvidjaar@gmail.com>
-rw-r--r-- | systemd/system/fedora-sysinit-unhack.service | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/systemd/system/fedora-sysinit-unhack.service b/systemd/system/fedora-sysinit-unhack.service index 86e20cd6..221d8bb1 100644 --- a/systemd/system/fedora-sysinit-unhack.service +++ b/systemd/system/fedora-sysinit-unhack.service @@ -1,8 +1,9 @@ [Unit] -Description=Bootup hack +Description=Bootup unhack DefaultDependencies=no Conflicts=shutdown.target Before=shutdown.target +After=fedora-sysinit-hack.service sysinit.target [Service] Type=oneshot |