Bugzilla – Bug 190026
/opt/kde3/bin/kde_add_yast_source.sh contains installation_sources
Last modified: 2006-07-10 12:31:29 UTC
When you rightclick in konquror, you are able to add a directory as an installation source. This is not possible, because /opt/kde3/bin/kde_add_yast_source.sh uses installation_sources which is not available anymore in 10.1.
That's probably the smallest problem - YaST currently doesn't support plain directories as installation sources. This is related to bug 168358 - see comment #15 there for a workaround.
With some small changes it can be less convinient. Now people get no error, even though the directory is not added. You could do the following. 1) Change the name of the action (and perhaps the icon) to clarify that this is not for YaST as such. 2) Edit the script to say the following: #!/bin/sh MESSAGE=`rug mount "$*"` if echo "$MESSAGE" | grep -q ERROR; then /opt/kde3/bin/kdialog --error "$MESSAGE" else /opt/kde3/bin/kdialog --msgbox \ "`TEXTDOMAINDIR=/opt/kde3/share/locale/ gettext -d kdebase-SUSE -s "Installation source added."`" fi This untill a more permanent solution is found.
*** This bug has been marked as a duplicate of 174369 ***