summaryrefslogtreecommitdiffstats
path: root/punani
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2012-06-08 20:34:23 +0200
committermakefu <github@syntax-fehler.de>2012-06-08 20:34:23 +0200
commita0321c82c7f80d1052108c4a1602b775799e4593 (patch)
tree4a9af394716216cf3e56dd022b8f0d30746efac6 /punani
parentdd1ba866c0f93500e1d3e4876fc75955be9d976a (diff)
parent6046373ce92a9c9856d828b37cda28af437e36be (diff)
Merge branch 'master' of github.com:krebscode/painload
Diffstat (limited to 'punani')
-rwxr-xr-xpunani/bin/punani16
1 files changed, 9 insertions, 7 deletions
diff --git a/punani/bin/punani b/punani/bin/punani
index 97c7ac85..23ba5e00 100755
--- a/punani/bin/punani
+++ b/punani/bin/punani
@@ -8,26 +8,28 @@ PKGS="$*"
## find package manager
if ! :; then : # dummy case, so the rest has a common format
-elif for PACKER_CMD in yum
+elif for PACKER_CMD in aptitude apt-get
do type $PACKER_CMD 2>/dev/null 1>&2 && break; done; then
INSTALL_PARAM='-y install'
REMOVE_PARAM='-y remove'
-elif for PACKER_CMD in brew
- do type $PACKER_CMD 2>/dev/null 1>&2 && break; done; then
- INSTALL_PARAM='install'
- REMOVE_PARAM='remove'
-
elif for PACKER_CMD in bauerbill packer yaourt pacman
do type $PACKER_CMD 2>/dev/null 1>&2 && break; done; then
INSTALL_PARAM='--noconfirm -S --needed'
REMOVE_PARAM='-Rcs'
-elif for PACKER_CMD in aptitude apt-get
+elif for PACKER_CMD in yum
do type $PACKER_CMD 2>/dev/null 1>&2 && break; done; then
INSTALL_PARAM='-y install'
REMOVE_PARAM='-y remove'
+elif for PACKER_CMD in brew
+ do type $PACKER_CMD 2>/dev/null 1>&2 && break; done; then
+ INSTALL_PARAM='install'
+ REMOVE_PARAM='remove'
+
+
+
else
echo "Error 2: no known package manager found; no punani for you!" >&2
exit 23