1
0
mirror of https://github.com/MichielDerhaeg/build-linux.git synced 2025-09-24 22:41:31 +02:00
Files
build-linux/filesystem/profile
2017-03-27 21:40:26 +02:00

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