Sophie

Sophie

distrib > Fedora > 13 > i386 > by-pkgid > f85037b6faea26c6fa054da02cbb32bc > files > 10

olpc-utils-1.0.23-1.fc13.i686.rpm

case "$LANG" in
*.utf-8|*.UTF-8)
	case "`tty`" in
	not\ a\ tty)
		# Don't print anything on non interactive sessions
	;;
	*)
		cat /etc/motd.olpc 2>/dev/null
	;;
	esac
;;
esac

# Add back sbin dirs to unprivileged users PATH
case $PATH in
	*/sbin/*) ;;
	*) PATH=/usr/local/sbin:/usr/sbin:/sbin:$PATH ;;
esac

# enable python optimized bytecode if the files are present (#8431)
if [ -e /usr/lib/python2.?/subprocess.pyo ]; then
	export PYTHONOPTIMIZE=2
fi