diff options
-rw-r--r-- | tree/etc/profile | 17 |
1 files changed, 2 insertions, 15 deletions
diff --git a/tree/etc/profile b/tree/etc/profile index 35fabc1..ed401a6 100644 --- a/tree/etc/profile +++ b/tree/etc/profile @@ -1,16 +1,3 @@ -# Please note, the following section may be REMOVED at any time. -# It is a remnant of the Gentoo Portage bootstrap system that was used to -# create the initial versions of Adélie Linux. - -# Load environment settings from profile.env, which is created by -# env-update from the files in /etc/env.d -if [ -e /etc/profile.env ] ; then - . /etc/profile.env -fi - -# End deprecated Gentoo Portage section - - [ -x /usr/bin/vim ] && export EDITOR=${EDITOR:-/usr/bin/vim} [ -x /usr/bin/less ] && export PAGER=${PAGER:-/usr/bin/less} @@ -28,9 +15,9 @@ export PATH # Users don't want anyone else writing their files. System applications allow # their group-mates to write. if [ $UID -gt 499 ]; then - umask 027 + umask 022 else - umask 007 + umask 002 fi |