From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH] sysvinit: Update rootfile to fix bug 12797 Date: Thu, 17 Mar 2022 22:27:15 +0100 Message-ID: <20220317212715.3543142-1-adolf.belka@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1020046953619164271==" List-Id: --===============1020046953619164271== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable - In sysvinit-2.97 (Dec2020) a patch was added which allows init to load conf= iguration data from files stored in /etc/inittab.d/ This modification would have come in with Core Update 155. - When sysvinit was updated from 2.88dsf to 2.98 the /etc/inittab.d/ director= y in the rootfile was commented out. Sysvinit looks to see if there are any files in inittab.d but as that direc= tory does not exist then the message "No inittab.d directory found" is written during th= e boot and is also shown in the log summary. - This patch uncomments the directory so that it will be present. No files wi= ll be placed in it but its prescence will stop the error message being shown during boo= t. Fixes: Bug #12797 Signed-off-by: Adolf Belka --- config/rootfiles/common/sysvinit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/rootfiles/common/sysvinit b/config/rootfiles/common/sysvi= nit index d06a31872..f97745760 100644 --- a/config/rootfiles/common/sysvinit +++ b/config/rootfiles/common/sysvinit @@ -1,6 +1,6 @@ bin/mountpoint bin/pidof -#etc/inittab.d +etc/inittab.d #sbin/bootlogd #sbin/fstab-decode sbin/halt --=20 2.35.1 --===============1020046953619164271==--