On Fri, 15 May 2020 08:39:03 +0000 "Debian Bug Tracking System" <ow...@bugs.debian.org> wrote:
> This is an automatic notification regarding your Bug report > which was filed against the openrc package: > > #958820: openrc: Please package new version 0.42.1 > > It has been closed by Debian FTP Masters > <ftpmas...@ftp-master.debian.org> (reply to Benda Xu > <hero...@gentoo.org>). > > Their explanation is attached below along with your original report. > If this explanation is unsatisfactory and you have not received a > better one in a separate message then please contact Debian FTP > Masters <ftpmas...@ftp-master.debian.org> (reply to Benda Xu > <hero...@gentoo.org>) by replying to this email. Thank you for your work on this, it is most helpful. I have been trying this newly packaged version, however it appears that you have not adopted my patch to add the runlevel "off" to openrc-init, to provide the same sequencing as when started by SysV init. The result of this is that some filesystems are not unmounted on shutdown. The patch which I had suggested was :- cat 0010-init-runlevel-off.patch Add in the runlevel "off" before "shutdown" in openrc-init.c --- a/src/rc/openrc-init.c +++ b/src/rc/openrc-init.c @@ -108,6 +108,7 @@ static void handle_shutdown(const char * { struct timespec ts; + do_openrc("off"); do_openrc(runlevel); printf("Sending the final term signal\n"); kill(-1, SIGTERM); Thank you for your consideration of this. Geoff