Merge branch 'master' into __user

remotes/origin/2.0
Jake Guffey 13 years ago
commit 6dafb3a01c
  1. 10
      conf/type/__jail/gencode-remote
  2. 6
      conf/type/__package_pacman/gencode-remote

@ -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

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

Loading…
Cancel
Save