summaryrefslogtreecommitdiff
path: root/scripts/remove
authortille <tille>2002-07-08 14:06:41 (UTC)
committer tille <tille>2002-07-08 14:06:41 (UTC)
commit0d6ff4c6b10524943b43240489182138694f2759 (patch) (side-by-side diff)
treedd194541fc2dd74ec4557f896338a915b7f35529 /scripts/remove
parentbbbd61bf777f1ac2342cde61e0710c9d6a348114 (diff)
downloadopie-0d6ff4c6b10524943b43240489182138694f2759.zip
opie-0d6ff4c6b10524943b43240489182138694f2759.tar.gz
opie-0d6ff4c6b10524943b43240489182138694f2759.tar.bz2
the answer to "how to remove task-opie"
Diffstat (limited to 'scripts/remove') (more/less context) (ignore whitespace changes)
-rw-r--r--scripts/remove/opie-remove.control4
-rwxr-xr-xscripts/remove/opie-remove.postinst32
2 files changed, 36 insertions, 0 deletions
diff --git a/scripts/remove/opie-remove.control b/scripts/remove/opie-remove.control
new file mode 100644
index 0000000..68341f2
--- a/dev/null
+++ b/scripts/remove/opie-remove.control
@@ -0,0 +1,4 @@
+Packagename: opie-remove
+Maintainer: Patrick S. Vogt <tille@handhelds.org>
+Version: 0.9.1
+Description: Remove opie
diff --git a/scripts/remove/opie-remove.postinst b/scripts/remove/opie-remove.postinst
new file mode 100755
index 0000000..fbbdf63
--- a/dev/null
+++ b/scripts/remove/opie-remove.postinst
@@ -0,0 +1,32 @@
+#!/bin/ash
+#
+# script to remove
+#
+# it's free so do not sell it
+# (c) patrick s. vogtp <tille@handhelds.org>
+
+IPKG_REMOVE="ipkg remove"
+
+echo "Upating opie"
+pack=`ipkg status | grep Package | grep -i opie | grep -v remove | sed "s/Package://"`
+
+echo "Stopping Opie"
+/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
+$IPKG_REMOVE qpe-pics
+$IPKG_REMOVE ipaqalarm
+$IPKG_REMOVE qpe2schedule
+$IPKG_REMOVE uschedule
+$IPKG_REMOVE qt-embedded
+$IPKG_REMOVE qt-embedded-rotation
+$IPKG_REMOVE opie-remove
+
+#might help
+sync
+