Diffstat (limited to 'scripts/update/opie-update.postinst') (more/less context) (ignore whitespace changes)
-rwxr-xr-x | scripts/update/opie-update.postinst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/update/opie-update.postinst b/scripts/update/opie-update.postinst index e32fab9..f761b67 100755 --- a/scripts/update/opie-update.postinst +++ b/scripts/update/opie-update.postinst @@ -2,37 +2,37 @@ # # script to remove and reinstall opie # # it's free so do not sell it # (c) patrick s. vogtp <tille@handhelds.org> IPKG_REMOVE="ipkg remove" IPKG_INSTALL="ipkg install" 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 +/etc/init.d/opie stop || /etc/init.d/qpe stop echo "start" > /tmp/update.log for p in $pack; do echo "rem. $p" >> /tmp/update.log $IPKG_REMOVE $p done #might help sync echo "Updating" `ipkg update` for p in $pack; do echo "inst. $p" >> /tmp/update.log $IPKG_INSTALL $p done ipkg remove opie-update echo "Starting Opie" -/etc/init.d/opie start +/etc/init.d/opie start || /etc/init.d/qpe start |