Bug#321502: run-parts syntax in /etc/X11/gdm/Xsession

Matthew Tarazi matthew at tarazi.net
Fri Aug 5 21:52:59 UTC 2005


Package: gdm
Version: 2.6.0.8-1 

The code in /etc/X11/gdm/Xsession currently has:

SESSIONFILES=$(run_parts $SYSSESSIONDIR)
if [ -n "$SESSIONFILES" ]; then
  for SESSIONFILE in $SESSIONFILES; do
    . $SESSIONFILE
  done
fi


Should the first line here be:

SESSIONFILES=$(run_parts --list $SYSSESSIONDIR)

run-parts without --list will not return the file names, and so
SESSIONFILES will be null. and the for loop will never be exectued

I am currently runing Debian testing (etch)





More information about the Pkg-gnome-maintainers mailing list