diff options
author | Aaron Griffin <aaronmgriffin@gmail.com> | 2008-05-21 02:25:46 -0400 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2008-05-21 02:25:46 -0400 |
commit | 7fc8fedea48fccce0ceb31383061519754bdaa1d (patch) | |
tree | e96738d02e193c70ac3c2f54dbcee55231b206a5 /testing2core64 | |
parent | 39eb3c90a2c021dc750467360e07a6dadf7bcbb2 (diff) |
Remove arch from the testing2 scripts, add *64 version
Thanks Pierre for the suggestion. This is much more in line
with the existing DB scripts
Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
Diffstat (limited to 'testing2core64')
-rwxr-xr-x | testing2core64 | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/testing2core64 b/testing2core64 new file mode 100755 index 0000000..4d30036 --- /dev/null +++ b/testing2core64 @@ -0,0 +1,11 @@ +#!/bin/bash + +if [ $# -le 0 ]; then + echo "usage: $(basename 0) <packagename> [<packagename> [<packagename ...]]" + exit 0 +fi + +for pkg in $@; do + echo "==> Moving package '$pkg'" + $(dirname $0)/db-move "$pkg" "testing" "core" "x86_64" +done |