From cbc8b23c13fab644fd5477a18691222c752ea40f Mon Sep 17 00:00:00 2001 From: kergoth Date: Sun, 08 Sep 2002 19:06:25 +0000 Subject: Added -force option to force a update of packages. --- (limited to 'scripts') diff --git a/scripts/updateipks b/scripts/updateipks index 83d945b..1c9c9b8 100755 --- a/scripts/updateipks +++ b/scripts/updateipks @@ -1,24 +1,36 @@ #!/bin/sh +while [ $# -ne 0 ] +do case "$1" in -oz) RHOST=openzaurus.sf.net RDIR=/home/groups/o/op/openzaurus/htdocs/feeds/3.0 INDEXER="~/ipkg-make-index ." - shift + ;; +-oz-test) + RHOST=openzaurus.sf.net + RDIR=/home/groups/o/op/openzaurus/htdocs/feeds/3.0/test + INDEXER="~/ipkg-make-index ." ;; -hh.org) RHOST=opie.handhelds.org RDIR=/home/opie/website/html/feed/ipaq INDEXER="/home/opie/ipkg-make-index ." - shift ;; -qpe) RHOST=qpe.sf.net RDIR=/home/groups/q/qp/qpe/htdocs/packages/ipaq/unstable - shift + ;; +-force) + FORCE=1 + ;; +*) + MKIPKSOPTS="$MKIPKSOPTS $1" ;; esac +shift +done if [ -z "$RHOST" -o -z "$RDIR" ] then @@ -30,17 +42,23 @@ fi NEW="" rm -f *.ipk + ssh $RHOST -C "cd $RDIR; ls *.ipk" >currentipks & -./mkipks "$@" wait # for ssh +./mkipks $MKIPKSOPTS for i in *.ipk do - if grep -q $i currentipks + if [ -z "$FORCE" ] then - rm $i + if grep -q $i currentipks + then + rm $i + else + NEW="$NEW $i"; + fi else - NEW="$NEW $i"; + NEW="$NEW $i"; fi done -- cgit v0.9.0.2