#!/bin/bash source ../functions/main # Making sure that the LFS directory is accessible if [ ! -d ${LFS} ]; then echo "LFS destination directory not found." exit 1 fi # Make lfs the owner in case the installation is restarted chown -Rv lfs:lfs ${LFS} exit $?