mirror of
https://github.com/MichielDerhaeg/build-linux.git
synced 2025-09-25 14:59:07 +02:00
17 lines
316 B
Bash
17 lines
316 B
Bash
# /etc/profile
|
|
|
|
#Set our umask
|
|
umask 022
|
|
|
|
# Set our default path
|
|
PATH="/usr/local/sbin:/usr/local/bin:/bin:/sbin:/usr/bin:/usr/sbin"
|
|
export PATH
|
|
|
|
# Load profiles from /etc/profile.d
|
|
if test -d /etc/profile.d/; then
|
|
for profile in /etc/profile.d/*.sh; do
|
|
test -r "$profile" && . "$profile"
|
|
done
|
|
unset profile
|
|
fi
|