--- trunk/magellan-initscripts/etc/profile 2004/12/13 22:52:07 3 +++ trunk/magellan-initscripts/etc/profile 2005/07/02 19:51:34 129 @@ -1,11 +1,12 @@ -### start /etc/profile ### +# /etc/profile: system-wide .profile file for bourne compatible shells +# $Header: /home/cvsd/magellan-cvs/magellan-src/magellan-initscripts/etc/profile,v 1.2 2005-07-02 19:50:44 niro Exp $ if [ -e "/etc/profile.env" ] then source /etc/profile.env fi -#077 would be more secure, but 022 is generally quite realistic +# 077 would be more secure, but 022 is generally quite realistic umask 022 if [ `/usr/bin/whoami` = 'root' ] @@ -31,12 +32,10 @@ if [ -z "$EDITOR" ] then source /etc/rc.config 2> /dev/null - #check if $EDITOR is still zero than use default + # check if $EDITOR is still zero than use default if [ -z "${EDITOR}" ] then EDITOR="/usr/bin/nano" fi export EDITOR fi - -### end /etc/profile ###