Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 293177 Details for
Bug 430549
hcid failing to connect to system messagebus
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
initscript alteration to address this issue.
bluetooth-init-lsb.patch (text/x-patch), 2.08 KB, created by
Adam Stokes
on 2008-01-28 18:30:47 UTC
(
hide
)
Description:
initscript alteration to address this issue.
Filename:
MIME Type:
Creator:
Adam Stokes
Created:
2008-01-28 18:30:47 UTC
Size:
2.08 KB
patch
obsolete
>Index: bluetooth.init >=================================================================== >RCS file: /cvs/dist/rpms/bluez-utils/RHEL-5/bluetooth.init,v >retrieving revision 1.7 >retrieving revision 1.7.4.3 >diff -u -r1.7 -r1.7.4.3 >--- bluetooth.init 17 Apr 2006 18:07:51 -0000 1.7 >+++ bluetooth.init 28 Jan 2008 18:22:36 -0000 1.7.4.3 >@@ -3,10 +3,14 @@ > # bluetooth: Start/stop bluetooth services > # > # chkconfig: 2345 25 90 >-# description: Bluetooth services for service discovery, authentication, \ >-# Human Interface Devices, etc. >-# >- >+### BEGIN INIT INFO >+# Required-Start: $syslog messagebus >+# Required-Stop: $syslog messagebus >+# Default-Start: 2 3 4 5 >+# Short-Description: Bluetooth services >+# Description: Bluetooth services for service discovery, authentication, >+# Human Interface Devices, etc. >+### END INIT INFO > > # Source function library. > . /etc/rc.d/init.d/functions >@@ -32,14 +36,17 @@ > { > echo -n $"Starting Bluetooth services:" > daemon /usr/sbin/hcid >- touch /var/lock/subsys/hcid >+ RETVAL=$? >+ [ $RETVAL = 0 ] && touch /var/lock/subsys/hcid > daemon /usr/sbin/sdpd >- touch /var/lock/subsys/sdpd >+ RETVAL=$? >+ [ $RETVAL -eq 0 ] && touch /var/lock/subsys/sdpd > [ "$HID2HCI_ENABLE" = "true" ] && hid2hci --tohci > /dev/null 2>&1 || : > start_uarts > rfcomm bind all >- touch /var/lock/subsys/bluetooth > echo "" >+ touch /var/lock/subsys/bluetooth >+ return $RETVAL > } > > stop() >@@ -49,11 +56,14 @@ > rfcomm release all > [ "$HID2HCI_UNDO" = "true" ] && hid2hci --tohid > /dev/null 2>&1 || : > killproc sdpd >- rm -f /var/lock/subsys/sdpd >+ RETVAL=$? >+ rm -f /var/lock/subsys/sdpd > killproc hcid >- rm -f /var/lock/subsys/hcid >+ RETVAL=$? >+ rm -f /var/lock/subsys/hcid > rm -f /var/lock/subsys/bluetooth > echo "" >+ return $RETVAL > } > > case "$1" in >@@ -72,12 +82,14 @@ > ;; > status) > status hcid >+ RETVAL=$? > status sdpd >+ RETVAL=$?? > ;; > *) > echo $"Usage: $0 {start|stop|status|restart|reload|condrestart}" >- exit 1 >+ exit 3 > ;; > esac > >-exit 0 >+exit $RETVAL
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 430549
:
293177
|
293178