diff options
author | William Hubbs <w.d.hubbs@gmail.com> | 2017-03-31 13:39:42 -0500 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2017-03-31 13:39:42 -0500 |
commit | a912029462ae988ab4e2a96a0958e54a3c2e822f (patch) | |
tree | 0d44d85f1d8ab2463594116ee76564e5486f3d25 /init.d/mount-ro.in | |
parent | 1e9078279709df2a3617bf1460890ceb1ddfcf59 (diff) |
init.d/mount-ro: change dependency on killprocs and savecache to after
killprocs always succeeds and savecache is not required by mount-ro, so
we can just start after both of these have run.
Diffstat (limited to 'init.d/mount-ro.in')
-rw-r--r-- | init.d/mount-ro.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init.d/mount-ro.in b/init.d/mount-ro.in index 3553b7a3..aa7a57cb 100644 --- a/init.d/mount-ro.in +++ b/init.d/mount-ro.in @@ -13,7 +13,7 @@ description="Re-mount filesytems read-only for a clean reboot." depend() { - need killprocs savecache + after killprocs savecache keyword -docker -lxc -openvz -prefix -systemd-nspawn -vserver } |