mirror of
https://github.com/zerotier/edge.git
synced 2026-05-22 16:25:05 -07:00
12 lines
259 B
Bash
12 lines
259 B
Bash
export CHARSET=UTF-8
|
|
export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
|
|
export PAGER=less
|
|
export PS1='\h:\w\$ '
|
|
umask 022
|
|
|
|
for script in /etc/profile.d/*.sh ; do
|
|
if [ -r $script ] ; then
|
|
. $script
|
|
fi
|
|
done
|