creating partial repos for the node-flavours belongs in build/
authorThierry Parmentelat <thierry.parmentelat@sophia.inria.fr>
Wed, 23 Mar 2011 08:10:00 +0000 (09:10 +0100)
committerThierry Parmentelat <thierry.parmentelat@sophia.inria.fr>
Wed, 23 Mar 2011 08:10:00 +0000 (09:10 +0100)
bin/partial-repo.sh [deleted file]

diff --git a/bin/partial-repo.sh b/bin/partial-repo.sh
deleted file mode 100755 (executable)
index 09771c0..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/bin/sh
-# $URL$
-
-COMMAND=$(basename $0)
-
-function usage () {
-    echo "Usage: $COMMAND repo1..."
-    echo "  a 'RPMS' subdir is expected in each repo arg"
-    exit 1
-}
-
-[[ -n "$@" ]] || usage
-
-set -e 
-
-for repo in "$@" ; do
-    if [ ! -d $repo/RPMS ] ; then
-       echo could not find $repo/RPMS - ignored
-       continue
-    fi
-
-    cd $repo
-    echo "==================== Dealing with repo $repo"
-    mkdir -p PARTIAL-RPMS
-    rsync --archive --verbose $(find RPMS -type f | egrep '/(bootcd|bootstrapfs|noderepo)-.*-.*-.*-.*rpm') PARTIAL-RPMS/
-    echo "==================== building packages index in $repo .."
-    createrepo PARTIAL-RPMS
-    echo '==================== DONE'
-    cd - >& /dev/null
-done