|
Bugzilla – Full Text Bug Listing |
| Summary: | hal not running during second installation stage | ||
|---|---|---|---|
| Product: | [openSUSE] SUSE LINUX 10.0 | Reporter: | Steffen Winterfeldt <snwint> |
| Component: | YaST2 | Assignee: | Steffen Winterfeldt <snwint> |
| Status: | RESOLVED FIXED | QA Contact: | Klaus Kämpf <kkaempf> |
| Severity: | Critical | ||
| Priority: | P5 - None | CC: | dkukawka |
| Version: | Beta 4 | ||
| Target Milestone: | --- | ||
| Hardware: | Other | ||
| OS: | All | ||
| Whiteboard: | |||
| Found By: | Other | Services Priority: | |
| Business Priority: | Blocker: | --- | |
| Marketing QA Status: | --- | IT Deployment: | --- |
|
Description
Steffen Winterfeldt
2005-09-01 10:13:18 UTC
The start up script should be modified to start start hal if it isn't running. I added the following patch to the second stage: Index: startup/Second-Stage/S06-services =================================================================== --- startup/Second-Stage/S06-services (revision 25301) +++ startup/Second-Stage/S06-services (working copy) @@ -42,4 +42,11 @@ fi fi +#============================================= +# 9.1) start hald +#--------------------------------------------- +if [ -x /usr/sbin/rchal ] ; then + /usr/sbin/rchal start +fi + please have a look at the patch i will check in the package now It won't do. You have to start dbus before hal. Just did a Beta4plus installation and ran into this bug again... started dbus, see attached patch. Steffen please check and close if
ok
Index: startup/Second-Stage/S06-services
===================================================================
--- startup/Second-Stage/S06-services (revision 25346)
+++ startup/Second-Stage/S06-services (working copy)
@@ -46,6 +46,7 @@
# 9.1) start hald
#---------------------------------------------
if [ -x /usr/sbin/rchal ] ; then
+ /usr/sbin/rcdbus start
/usr/sbin/rchal start
fi
looks good |