Update profile

This commit is contained in:
ItsDrike 2021-07-14 14:27:27 +02:00
parent 65e10302cc
commit 21ed7524ee
No known key found for this signature in database
GPG key ID: B5F6B41F708C3ADD

View file

@ -3,7 +3,7 @@
# Set umask, 027 might be too strict for some people. if that's the case # Set umask, 027 might be too strict for some people. if that's the case
# you can fall back to 022 (allowing others to read everything by default) # you can fall back to 022 (allowing others to read everything by default)
# or even to 002 (allowing groups to write into files just like owners) # or even to 002 (allowing groups to write into files just like owners)
umask 027 umask 022
# Append "$1" to $PATH when not already in. # Append "$1" to $PATH when not already in.
# This function API is accessible to scripts in /etc/profile.d # This function API is accessible to scripts in /etc/profile.d
@ -17,9 +17,12 @@ append_path () {
} }
# Append our default paths # Append our default paths
append_path '/sbin'
append_path '/usr/sbin'
append_path '/bin'
append_path '/usr/bin'
append_path '/usr/local/sbin' append_path '/usr/local/sbin'
append_path '/usr/local/bin' append_path '/usr/local/bin'
append_path '/usr/bin'
# Force PATH to be environment # Force PATH to be environment
export PATH export PATH
@ -35,16 +38,6 @@ fi
# Unload our profile API functions # Unload our profile API functions
unset -f append_path unset -f append_path
# Source global bash config, when interactive but not posix or sh mode
if test "$BASH" &&\
test "$PS1" &&\
test -z "$POSIXLY_CORRECT" &&\
test "${0#-}" != sh &&\
test -r /etc/bash.bashrc
then
. /etc/bash.bashrc
fi
# Termcap is outdated, old, and crusty, kill it. # Termcap is outdated, old, and crusty, kill it.
unset TERMCAP unset TERMCAP