Codebase list sysvinit / 7bef946
Revert "Remove check for .legacy-bootordering flag file" As discussed in #926854 the local admin can set it, and it’s a valid usecase, even if we don’t set (and, in fact, clear it on upgrade when we migrate to insserv) it any more. This reverts commit 340c02c2d3ef1d9cad35129e2e7f1bf3f8993ff1. mirabilos authored 3 years ago mirabilos committed 3 years ago
2 changed file(s) with 10 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
00 sysvinit (2.96-4) UNRELEASED; urgency=medium
11
2 [ Samuel Thibault ]
23 * src/initscripts/etc/init.d/{checkroot,checkfs}.sh: Fix getting fsck return
34 code.
45
5 -- Samuel Thibault <sthibault@debian.org> Sun, 17 May 2020 11:19:48 +0200
6 [ Thorsten Glaser ]
7 * Bring back support for /etc/init.d/.legacy-bootordering as
8 flag file (manually created by the local admin) to disable
9 concurrent (parallel) boot
10
11 -- Thorsten Glaser <tg@mirbsd.de> Tue, 09 Jun 2020 16:23:26 +0200
612
713 sysvinit (2.96-3) unstable; urgency=medium
814
6363 test -s /etc/init.d/.depend.boot || CONCURRENCY="none"
6464 test -s /etc/init.d/.depend.start || CONCURRENCY="none"
6565 test -s /etc/init.d/.depend.stop || CONCURRENCY="none"
66 if test -e /etc/init.d/.legacy-bootordering; then
67 CONCURRENCY="none"
68 fi
6669 if grep -wqs concurrency=none /proc/cmdline; then
6770 CONCURRENCY="none"
6871 fi