Merge pull request #85 from jdguffey/__jail

Don't symlink multiple times
This commit is contained in:
Nico Schottelius 2012-06-21 23:42:30 -07:00
commit 0cae1b44f9
1 changed files with 6 additions and 4 deletions

View File

@ -185,10 +185,12 @@ cat <<EOF
if [ ! -d "${jaildir}/base/usr/home" ]; then if [ ! -d "${jaildir}/base/usr/home" ]; then
mkdir -p "${jaildir}/base/usr/home" mkdir -p "${jaildir}/base/usr/home"
fi fi
if [ ! -d "${jaildir}/home" ]; then if [ ! -d "${jaildir}/base/home" ]; then
SAVE=\$PWD; cd ${jaildir}/base if [ ! -L "${jaildir}/base/home" ]; then
ln -s usr/home home SAVE=\$PWD; cd ${jaildir}/base
cd \$SAVE; unset SAVE ln -s usr/home home
cd \$SAVE; unset SAVE
fi
fi fi
fi fi
if [ ! -d "${jaildir}/rw" ]; then if [ ! -d "${jaildir}/rw" ]; then