summaryrefslogtreecommitdiff
path: root/scripts
Side-by-side diff
Diffstat (limited to 'scripts') (more/less context) (ignore whitespace changes)
-rwxr-xr-xscripts/update/opie-update.postinst11
1 files changed, 1 insertions, 10 deletions
diff --git a/scripts/update/opie-update.postinst b/scripts/update/opie-update.postinst
index d7a1205..e32fab9 100755
--- a/scripts/update/opie-update.postinst
+++ b/scripts/update/opie-update.postinst
@@ -1,3 +1,3 @@
-#!/bin/bash
+#!/bin/ash
#
# script to remove and reinstall opie
@@ -11,5 +11,4 @@ echo "Upating opie"
pack=`ipkg status | grep Package | grep -i opie | grep -v update | sed "s/Package://"`
-
echo "Stopping Opie"
/etc/init.d/opie stop
@@ -19,9 +18,5 @@ echo "start" > /tmp/update.log
for p in $pack; do
echo "rem. $p" >> /tmp/update.log
-if [["$p"="opie-update"]]; then
-echo ""
-else
$IPKG_REMOVE $p
-fi
done
@@ -35,9 +30,5 @@ echo "Updating"
for p in $pack; do
echo "inst. $p" >> /tmp/update.log
-if [["$p"="opie-update"]]; then
-echo ""
-else
$IPKG_INSTALL $p
-fi
done