diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2017-06-28 21:55:02 -0500 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2017-06-28 21:55:02 -0500 |
commit | 2a980367aa4f27a02cb74f5b16ee66982b44f910 (patch) | |
tree | 56e41fcbf3bb67f81fcbde911b9cf3bdfb8163dc /tree | |
parent | fb890d708460036887325a0aa9413297218f2661 (diff) | |
download | adelie-base-2a980367aa4f27a02cb74f5b16ee66982b44f910.tar.gz adelie-base-2a980367aa4f27a02cb74f5b16ee66982b44f910.tar.bz2 adelie-base-2a980367aa4f27a02cb74f5b16ee66982b44f910.tar.xz adelie-base-2a980367aa4f27a02cb74f5b16ee66982b44f910.zip |
/etc/profile: finally remove last vestiage of Portagev0.3.3
Diffstat (limited to 'tree')
-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 |