|
Bugzilla – Full Text Bug Listing |
| Summary: | yast2 runlevel doesn't show any services | ||
|---|---|---|---|
| Product: | [openSUSE] openSUSE 11.0 | Reporter: | Casual J. Programmer <casualprogrammer> |
| Component: | YaST2 | Assignee: | Lukas Ocilka <locilka> |
| Status: | RESOLVED DUPLICATE | QA Contact: | Jiri Srain <jsrain> |
| Severity: | Major | ||
| Priority: | P5 - None | CC: | clarkt |
| Version: | Alpha 2 | ||
| Target Milestone: | --- | ||
| Hardware: | x86 | ||
| OS: | openSUSE 11.0 | ||
| Whiteboard: | |||
| Found By: | Beta-Customer | Services Priority: | |
| Business Priority: | Blocker: | --- | |
| Marketing QA Status: | --- | IT Deployment: | --- |
| Attachments: | yast2 logs | ||
|
Description
Casual J. Programmer
2008-03-01 10:46:27 UTC
Created attachment 198007 [details]
yast2 logs
*** Bug 366661 has been marked as a duplicate of this bug. *** Couldn't find an agent to handle '.init.scripts.runlevel_list' Couldn't find an agent to handle '.init.scripts.current_runlevel' Couldn't find an agent to handle '.init.scripts.default_runlevel' Couldn't find an agent to handle '.init.insserv_conf' Couldn't find an agent to handle '.init.scripts.runlevels' Couldn't find an agent to handle '.init.scripts.comments' SCR::Read() failed Hmm, it seems that SCR agent for reading the runlevel configuration is missing. Lazy loading of SCR agents is broken a bit. Hotfix for yast2-runlevel is this:
wizard.ycp == /usr/share/YaST2/include/runlevel/wizard.ycp
--- cut ---
Index: wizard.ycp
===================================================================
--- wizard.ycp (revision 45160)
+++ wizard.ycp (working copy)
@@ -94,7 +94,7 @@
];
Wizard::CreateDialog ();
- Wizard::SetDesktopIcon("runlevel");
+ Wizard::SetTitleIcon("runlevel");
Wizard::DisableBackButton ();
Wizard::RestoreHelp (getHelpProgress ());
@@ -117,7 +117,7 @@
Wizard::CreateDialog ();
- Wizard::SetDesktopIcon("runlevel");
+ Wizard::SetTitleIcon("runlevel");
Wizard::DisableBackButton ();
Wizard::RestoreHelp (getHelpProgress ());
--- cut ---
More can be found on the yast-announce and yast-devel mailing-lists.
*** This bug has been marked as a duplicate of bug 365116 ***
- Using SetTitleIcon instead of SetDesktopIcon (bnc #366355). - yast2-runlevel-2.16.1 |