indent + simplify

Signed-off-by: Nico Schottelius <nico@brief.schottelius.org>
remotes/origin/feature_files_export
Nico Schottelius 13 years ago
parent 48f3252de5
commit 6afcb0e9ee
  1. 28
      conf/type/__package_apt/gencode-remote
  2. 2
      conf/type/__package_pacman/gencode-remote

@ -52,17 +52,17 @@ esac
aptget="DEBIAN_FRONTEND=noninteractive apt-get --quiet --yes" aptget="DEBIAN_FRONTEND=noninteractive apt-get --quiet --yes"
if [ "$state_is" != "$state_should" ]; then [ "$state_is" = "$state_should" ] && exit 0
case "$state_should" in
present) case "$state_should" in
echo $aptget install \"$name\" present)
;; echo $aptget install \"$name\"
absent) ;;
echo $aptget remove \"$name\" absent)
;; echo $aptget remove \"$name\"
*) ;;
echo "Unknown state: $state_should" >&2 *)
exit 1 echo "Unknown state: $state_should" >&2
;; exit 1
esac ;;
fi esac

@ -53,7 +53,7 @@ else
fi fi
# Exit if nothing is needed to be done # Exit if nothing is needed to be done
[ "$state_is" = "$state_should ] && exit 0 [ "$state_is" = "$state_should" ] && exit 0
case "$state_should" in case "$state_should" in
present) present)

Loading…
Cancel
Save