sync and remove require different options

Signed-off-by: Steven Armstrong <steven@icarus.ethz.ch>
This commit is contained in:
Steven Armstrong 2012-06-22 15:36:14 +02:00
parent 37eabffd9c
commit b09d9786d2
1 changed files with 2 additions and 4 deletions

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