Merge branch 'master' into __user

This commit is contained in:
Jake Guffey 2012-06-22 11:09:34 -04:00
commit 6dafb3a01c
2 changed files with 8 additions and 8 deletions

View File

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

View File

@ -25,8 +25,6 @@
# exec >&2
# set -x
pacopts="--needed --noconfirm --noprogressbar"
if [ -f "$__object/parameter/name" ]; then
name="$__object/parameter/name"
else
@ -57,10 +55,10 @@ fi
case "$state_should" in
present)
echo pacman "$pacopts" -S \"$name\"
echo pacman --needed --noconfirm --noprogressbar -S \"$name\"
;;
absent)
echo pacman "$pacopts" -R \"$name\"
echo pacman --noconfirm --noprogressbar -R \"$name\"
;;
*)
echo "Unknown state: $state_should" >&2