> No Attachment for patch. I resent another email with the patch. > Also from reading the bug, you didn't explain > why this bug suddenly appear. I think it is important since gdm is the > login manager for OpenSolaris. What have we done to cause such as > serious regression or worst still if the changes was caused by > underlying software stack. I thought it is a regression when Brian fix doo bug #4887. The script /lib/svc/method/svc-gdm was new introduced in b105.
Current failure is a shell error. Let's look at the origin part first. <snip> 22 FMRI=svc:application/graphical-login/gdm 23 24 debug=`svcprop -p gdm/debug $FMRI` 25 26 arg=`eval "echo \`svcprop -p gdm/args $FMRI\`"` 27 28 if [ $debug = "true" ]; then 29 /usr/sbin/gdm $arg --debug 30 else 31 /usr/sbin/gdm $arg 32 fi </snip> Because there is no gdm/debug property for gdm service(line 24), $debug will be blank. This will cause fail error on line 28. Hopes I explain clearly. I'm waiting for Brian's review before committing. Dave will wait for this bug for a respin. Thanks, Halton.
