# .bashrc

# Check for first run flag
if [ -f /first-run.flag ]; then
	. /etc/create-passwd.sh
	rm /first-run.flag
fi


# User specific aliases and functions

# Source global definitions
if [ -f /etc/bashrc ]; then
	. /etc/bashrc
fi


