Bryan Zubrod f0d5947529 Add Pod Toolbox features to the container (#50)
* container: Add tools/scripts/docs for troubleshooting.
* Add iproute2
2017-07-11 12:48:48 -05:00

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