slitaz-tools view rootfs/usr/share/examples/etc/profile @ rev 10

Add the defautl rootfs use to build the tools bin pkg
author Christophe Lincoln <pankso@slitaz.org>
date Sun Dec 02 21:00:38 2007 +0100 (2007-12-02)
parents
children df6285a99463
line source
1 # /etc/profile: system-wide .profile file for the Bourne shells
3 PATH="/usr/sbin:/usr/bin:/sbin:/bin:/usr/games"
4 LD_LIBRARY_PATH="/usr/lib:/lib"
6 if [ "`id -u`" -eq 0 ]; then
7 PS1='\e[1m\u@\h:\w\#\e[m '
8 else
9 PS1='\e[1m\u@\h:\w\$\e[m '
10 fi
12 DISPLAY=:0.0
14 export PATH LD_LIBRARY_PATH PS1 DISPLAY ignoreeof
15 umask 022
17 # Locale setting.
18 if [ -f "/etc/locale.conf" ]; then
19 . /etc/locale.conf
20 export LANG LC_ALL
21 fi
23 export G_FILENAME_ENCODING=iso8859-1