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

(-)/etc/profile (-7 / +7 lines)
Lines 57-67 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
if [[ -d /etc/profile.d ]] ; then
60
if $(ls /etc/profile.d/*.sh &> /dev/null) ; then
61
	for sh in /etc/profile.d/*.sh ; do
61
   for sh in /etc/profile.d/*.sh ; do
62
		if [ -r "$sh" ] ; then
62
      if [ -r "$sh" ] ; then
63
			. "$sh"
63
         . "$sh"
64
		fi
64
      fi
65
	done
65
   done
66
	unset sh
66
   unset sh
67
fi
67
fi

Return to bug 116571