summaryrefslogtreecommitdiff
path: root/scripts/update/opie-update.postinst
Side-by-side diff
Diffstat (limited to 'scripts/update/opie-update.postinst') (more/less context) (ignore whitespace changes)
-rwxr-xr-xscripts/update/opie-update.postinst18
1 files changed, 10 insertions, 8 deletions
diff --git a/scripts/update/opie-update.postinst b/scripts/update/opie-update.postinst
index b86bc31..f056e49 100755
--- a/scripts/update/opie-update.postinst
+++ b/scripts/update/opie-update.postinst
@@ -13,13 +13,14 @@ pack=`ipkg status | grep Package | grep -i opie | sed "s/Package://"`
echo "Stopping Opie"
-`/etc/init.d/opie stop`
+/etc/init.d/opie stop
echo "start" > /tmp/update.log
for p in $pack; do
-cmd="$IPKG_REMOVE $p"
echo "rem. $p" >> /tmp/update.log
-if [$p!="opie-update]; then
-$cmd;
+if [["$p"="opie-update"]]; then
+echo ""
+else
+$IPKG_REMOVE $p
fi
done
@@ -33,8 +34,9 @@ echo "Updating"
for p in $pack; do
-cmd="$IPKG_INSTALL $p"
echo "inst. $p" >> /tmp/update.log
-if [$p!="opie-update]; then
-$cmd;
+if [["$p"="opie-update"]]; then
+echo ""
+else
+$IPKG_INSTALL $p
fi
done
@@ -43,3 +45,3 @@ ipkg remove opie-update
echo "Starting Opie"
-`/etc/init.d/opie start`
+/etc/init.d/opie start