[Bug 671292] New: init scripts complains about missing bootsplash binary, when bootsplash isn't installed
https://bugzilla.novell.com/show_bug.cgi?id=671292 https://bugzilla.novell.com/show_bug.cgi?id=671292#c0 Summary: init scripts complains about missing bootsplash binary, when bootsplash isn't installed Classification: openSUSE Product: openSUSE 11.4 Version: Factory Platform: All OS/Version: Other Status: NEW Severity: Normal Priority: P5 - None Component: Basesystem AssignedTo: bnc-team-screening@forge.provo.novell.com ReportedBy: abrouwers@gmail.com QAContact: qa@suse.de Found By: --- Blocker: --- User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:2.0b11) Gecko/20100101 Firefox/4.0b11 This is a cosmetic issue mostly. However, on my systems, I generally do not install bootsplash. During the shutdown sequence, I see an error about the process trying to kill bootsplash, which of course does not work. I think the scripts check for pidof splash, and tries to kill that. It might be nice to hide this output from the user, in the event bootsplash isn't around. Reproducible: Always Steps to Reproduce: 1. Remove bootsplash 2. Reboot 3. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=671292 https://bugzilla.novell.com/show_bug.cgi?id=671292#c wei wang <wewang@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |wewang@novell.com AssignedTo|bnc-team-screening@forge.pr |javier@opensuse.org |ovo.novell.com | -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=671292 https://bugzilla.novell.com/show_bug.cgi?id=671292#c1 Javier Llorente <javier@opensuse.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO CC| |javier@opensuse.org InfoProvider| |abrouwers@gmail.com --- Comment #1 from Javier Llorente <javier@opensuse.org> 2011-02-18 00:33:12 UTC --- Could you please copy&paste such an error here? Thanks. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=671292 https://bugzilla.novell.com/show_bug.cgi?id=671292#c2 --- Comment #2 from Andrew Brouwers <abrouwers@gmail.com> 2011-03-04 20:21:12 UTC --- Hello, It's difficult to exactly copy and paste the error, as the operation happens during SHUTDOWN. It's really easy to reproduce though - just remove bootsplash from your system, and shutdown. It explicitly tries to use "pidofproc" to kill "/sbin/splash" , and fails with /sbin/splash not existing (and prints the error to the terminal). -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=671292 https://bugzilla.novell.com/show_bug.cgi?id=671292#c3 Javier Llorente <javier@opensuse.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Version|Factory |Final InfoProvider|abrouwers@gmail.com |maintenance@opensuse.org --- Comment #3 from Javier Llorente <javier@opensuse.org> 2011-03-10 01:45:21 UTC --- I can reproduce it on 11.4. If I remove bootsplash, I get "pidofproc: pidofproc: cannot stat /sbin/splash: No such file or directory" when shutting down/rebooting. It seems that the issue is located in /etc/init.d/halt (aaa_base). A quick fix that comes to my mind is having rc_wait /sbin/blogd if test -s /sbin/splash ; then rc_wait /sbin/splash fi instead of rc_wait /sbin/blogd /sbin/splash @Maintenance Is this fix acceptable? -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=671292 https://bugzilla.novell.com/show_bug.cgi?id=671292#c4 Marcus Meissner <meissner@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |maintenance@opensuse.org, | |meissner@novell.com, | |ro@novell.com InfoProvider|maintenance@opensuse.org |ro@novell.com --- Comment #4 from Marcus Meissner <meissner@novell.com> 2011-03-10 07:41:27 UTC --- question is if there an ordering in waiting of splash and blogd? Also, Rudi, is this change ok? -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=671292 https://bugzilla.novell.com/show_bug.cgi?id=671292#c5 Ruediger Oertel <ro@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- InfoProvider|ro@novell.com |maintenance@opensuse.org AssignedTo|javier@opensuse.org |ro@novell.com --- Comment #5 from Ruediger Oertel <ro@novell.com> 2011-05-09 15:43:34 UTC --- different approach: fix it in rc_wait directly: --- a/files/etc/rc.status +++ b/files/etc/rc.status @@ -369,6 +369,7 @@ rc_wait() parent_processes="${parent_processes:+$parent_processes:}${ppid}" done for comm ; do + test -s $comm || continue ppid="$(/sbin/pidofproc $comm 2> /dev/null)" || continue parent_processes="${parent_processes:+$parent_processes:}${ppid}" done submitting to factory/aaa_base now. @maintenance: requesting update for aaa_base on 11.4 bugs: bnc#671292 (this one) bnc#681687 bnc#691883 -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=671292 https://bugzilla.novell.com/show_bug.cgi?id=671292#c6 Swamp Workflow Management <swamp@suse.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status Whiteboard| |maint:running:40806:low --- Comment #6 from Swamp Workflow Management <swamp@suse.com> 2011-05-10 12:21:20 UTC --- The SWAMPID for this issue is 40806. This issue was rated as low. Please submit fixed packages until 2011-06-07. Also create a patchinfo file using this link: https://swamp.suse.de/webswamp/wf/40806 -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=671292 https://bugzilla.novell.com/show_bug.cgi?id=671292#c7 Christian Dengler <cdengler@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |NEW CC| |cdengler@novell.com InfoProvider|maintenance@opensuse.org | --- Comment #7 from Christian Dengler <cdengler@novell.com> 2011-05-10 12:21:32 UTC --- SwampID provided. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=671292 https://bugzilla.novell.com/show_bug.cgi?id=671292#c8 Ruediger Oertel <ro@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #8 from Ruediger Oertel <ro@novell.com> 2011-05-10 15:11:43 UTC --- fix submitted to 11.4 updates, patchinfo created -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=671292 https://bugzilla.novell.com/show_bug.cgi?id=671292#c9 --- Comment #9 from Bernhard Wiedemann <bwiedemann@novell.com> 2011-05-10 18:00:09 CEST --- This is an autogenerated message for OBS integration: This bug (671292) was mentioned in https://build.opensuse.org/request/show/69984 11.4 / aaa_base -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=671292 https://bugzilla.novell.com/show_bug.cgi?id=671292#c10 Christian Dengler <cdengler@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status Whiteboard|maint:running:40806:low | --- Comment #10 from Christian Dengler <cdengler@novell.com> 2011-05-17 14:11:34 UTC --- Update released. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
participants (1)
-
bugzilla_noreply@novell.com