mirror of
https://github.com/cloudnativelabs/kube-router.git
synced 2025-10-15 11:51:03 +02:00
16 lines
318 B
Bash
16 lines
318 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
|
|
|
|
if [ -f /etc/bash.bashrc ]; then
|
|
. /etc/bash.bashrc
|
|
fi
|