First Last Prev Next    No search results available      Search page      Enter new bug
Bug#: 89180
Alias:
Product:
Component:
Status: RESOLVED
Resolution: FIXED
Assigned To: Gentoo Sound Team <sound@gentoo.org>
Hardware:
OS:
Version:
Priority:
Severity:
Reporter: Philip Kovacs <kovacsp3@comcast.net>
Add CC:
CC:
URL:
Summary:
Status Whiteboard:
Keywords:

Filename Description Type Creator Created Size Actions
Create a New Attachment (proposed patch, testcase, etc.) View All

Bug 89180 depends on: Show dependency tree
Bug 89180 blocks:
Votes: 0    Show votes for this bug    Vote for this bug

Additional Comments: (this is where you put emerge --info)


Not eligible to see or edit group visibility for this bug.






View Bug Activity   |   Format For Printing   |   XML   |   Clone This Bug


Description:   Opened: 2005-04-15 07:05 0000
The mpd daemon will have terminated by the time start-stop-daemon --stop gets
to it, since mpd traps the TERM signal and shuts down well before its
/etc/init.d/mpd stop command is run.   The start-stop-daemon --stop command in
/etc/init.d/mpd will return 1 unless --oknodo is specified, as it should in
this case.  The fix below will cause eend $? to report [ok] on mpd shutdown and
not [!!].

In /etc/init.d/mpd:

stop() {
   ebegin "Stopping Musinc Player Daemon"
   start-stop-daemon --stop --quiet --exec /usr/bin/mpd 
   eend $?
}

should be:

stop() {
   ebegin "Stopping Musinc Player Daemon"
   start-stop-daemon --stop --quiet --exec /usr/bin/mpd --oknodo
   eend $?
}


Reproducible: Always
Steps to Reproduce:
1.
2.
3.

------- Comment #1 From Jan Brinkmann (RETIRED) 2005-05-05 07:32:15 0000 -------
fixed in cvs, thanks

First Last Prev Next    No search results available      Search page      Enter new bug