diff options
author | DJ Lucas <dj@linuxfromscratch.org> | 2020-10-02 03:57:24 +0000 |
---|---|---|
committer | DJ Lucas <dj@linuxfromscratch.org> | 2020-10-02 03:57:24 +0000 |
commit | 3c784d8d8ad85719f66516b14dc7dc6ba61746cf (patch) | |
tree | e9ac65e8e88781cf904185d5c0c3f559ff30058a /bootscripts | |
parent | 38b705d991216e61a2a8a828cb93cecf41ea32a4 (diff) |
make a Should-Stop dependency of swap to allow clean install
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@12052 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'bootscripts')
-rw-r--r-- | bootscripts/ChangeLog | 3 | ||||
-rw-r--r-- | bootscripts/lfs/init.d/swap | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/bootscripts/ChangeLog b/bootscripts/ChangeLog index 240f1281e..03330e3d0 100644 --- a/bootscripts/ChangeLog +++ b/bootscripts/ChangeLog @@ -1,3 +1,6 @@ +2020-10-02 DJ Lucas <dj@linuxfromscratch.org> + * make $local_fs a Should-Stop dependency of swap to allow clean install + 2020-08-02 Bruce Dubbs <bdubbs@linuxfromscratch.org> * Fix a minor display problem in checkfs diff --git a/bootscripts/lfs/init.d/swap b/bootscripts/lfs/init.d/swap index bbe1982d8..34fad3552 100644 --- a/bootscripts/lfs/init.d/swap +++ b/bootscripts/lfs/init.d/swap @@ -16,8 +16,8 @@ # Provides: swap # Required-Start: udev # Should-Start: modules -# Required-Stop: localnet $local_fs -# Should-Stop: +# Required-Stop: localnet +# Should-Stop: $local_fs # Default-Start: S # Default-Stop: 0 6 # Short-Description: Mounts and unmounts swap partitions. |