Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 116232
Collapse All | Expand All

(-)/etc/profile (-6 / +8 lines)
Lines 57-65 Link Here
57
	PS1="`whoami`@`uname -n | cut -f1 -d.` \$ "
57
	PS1="`whoami`@`uname -n | cut -f1 -d.` \$ "
58
fi
58
fi
59
59
60
for sh in /etc/profile.d/*.sh ; do
60
if [[ -e /etc/profile.d && -d /etc/profile.d ]] ; then
61
	if [ -r "$sh" ] ; then
61
   for sh in /etc/profile.d/*.sh ; do
62
		. "$sh"
62
   	if [ -r "$sh" ] ; then
63
	fi
63
	   	. "$sh"
64
done
64
	   fi
65
unset sh
65
   done
66
   unset sh
67
fi

Return to bug 116232