initial commit

This commit is contained in:
2014-12-19 14:13:30 -05:00
commit 1d8692b8e6
52 changed files with 2828 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
function holla_atcha_boi {
# Do we have an existing chroot set up yet? If not, create.
if [[ ! -d "root.x86_64/root" || ! -d "root.i686/root" ]];
then
echo "No existing chroot environment found. Creating..."
rm -f ${LOCKFILE}
${BASEDIR}/lib/mk.chroot.sh
touch ${LOCKFILE}
fi
}