diff options
author | Aaron Griffin <aaronmgriffin@gmail.com> | 2009-09-22 22:25:51 +0200 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2009-09-22 22:25:51 +0200 |
commit | 652fa7ad93bfa708f0764b64107a54f4dcaf17bd (patch) | |
tree | 2a90bd43472dc26e96ae2b768a2aa643d9a92080 /testing2community64 | |
parent | 7af26d483b6987e0f3d42b25d8cb4e39f691a0a3 (diff) | |
download | dbscripts-652fa7ad93bfa708f0764b64107a54f4dcaf17bd.tar.gz dbscripts-652fa7ad93bfa708f0764b64107a54f4dcaf17bd.tar.xz |
Renamed community-testing2* scripts
We know the repo. Lets make the names nicer
Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
Diffstat (limited to 'testing2community64')
-rwxr-xr-x | testing2community64 | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/testing2community64 b/testing2community64 new file mode 100755 index 0000000..3f88a4d --- /dev/null +++ b/testing2community64 @@ -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" "community-testing" "community" "x86_64" +done |