diff options
author | Pierre Labastie <pierre.labastie@neuf.fr> | 2022-03-22 11:33:31 +0100 |
---|---|---|
committer | Pierre Labastie <pierre.labastie@neuf.fr> | 2022-03-25 10:24:45 +0100 |
commit | 3b20f597b2e75d8cbdaa41f2618eb6c899af14b7 (patch) | |
tree | f5feb6db94fa70be3e9a6b793e2183ae5ec26866 /bootscripts | |
parent | 887af775a52a78e1e1552b5c0b83aaa5b98fa1a2 (diff) |
Fix Makefile for new semantics of S/K symlinks
In runlevel 0/6, services which must be stopped should be
with Kxx symlinks
Diffstat (limited to 'bootscripts')
-rw-r--r-- | bootscripts/Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/bootscripts/Makefile b/bootscripts/Makefile index 4a962ed56..2e8476d13 100644 --- a/bootscripts/Makefile +++ b/bootscripts/Makefile @@ -88,10 +88,10 @@ rcS: files rc0: files ln -sf ../init.d/network ${ETCDIR}/rc.d/rc0.d/K80network ln -sf ../init.d/sysklogd ${ETCDIR}/rc.d/rc0.d/K90sysklogd - ln -sf ../init.d/sendsignals ${ETCDIR}/rc.d/rc0.d/S60sendsignals - ln -sf ../init.d/swap ${ETCDIR}/rc.d/rc0.d/S65swap - ln -sf ../init.d/mountfs ${ETCDIR}/rc.d/rc0.d/S70mountfs - ln -sf ../init.d/localnet ${ETCDIR}/rc.d/rc0.d/S90localnet + ln -sf ../init.d/sendsignals ${ETCDIR}/rc.d/rc0.d/K92sendsignals + ln -sf ../init.d/swap ${ETCDIR}/rc.d/rc0.d/K94swap + ln -sf ../init.d/mountfs ${ETCDIR}/rc.d/rc0.d/K96mountfs + ln -sf ../init.d/localnet ${ETCDIR}/rc.d/rc0.d/K98localnet ln -sf ../init.d/halt ${ETCDIR}/rc.d/rc0.d/S99halt rc1: files @@ -117,10 +117,10 @@ rc5: files rc6: files ln -sf ../init.d/network ${ETCDIR}/rc.d/rc6.d/K80network ln -sf ../init.d/sysklogd ${ETCDIR}/rc.d/rc6.d/K90sysklogd - ln -sf ../init.d/sendsignals ${ETCDIR}/rc.d/rc6.d/S60sendsignals - ln -sf ../init.d/swap ${ETCDIR}/rc.d/rc6.d/S65swap - ln -sf ../init.d/mountfs ${ETCDIR}/rc.d/rc6.d/S70mountfs - ln -sf ../init.d/localnet ${ETCDIR}/rc.d/rc6.d/S90localnet + ln -sf ../init.d/sendsignals ${ETCDIR}/rc.d/rc0.d/K92sendsignals + ln -sf ../init.d/swap ${ETCDIR}/rc.d/rc0.d/K94swap + ln -sf ../init.d/mountfs ${ETCDIR}/rc.d/rc0.d/K96mountfs + ln -sf ../init.d/localnet ${ETCDIR}/rc.d/rc0.d/K98localnet ln -sf ../init.d/reboot ${ETCDIR}/rc.d/rc6.d/S99reboot uninstall: |