summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Keating <jkeating@redhat.com>2008-02-19 07:51:24 -0500
committerJesse Keating <jkeating@redhat.com>2008-02-19 07:51:24 -0500
commite6aad6ac6128eb8c9f143c964b59da9aac5bbb75 (patch)
tree785f96f200863e6576a6c008013770068a97a073
parent7715fd3abb0ed80fca6e0c1cce361ba15148648f (diff)
downloadreleng-e6aad6ac6128eb8c9f143c964b59da9aac5bbb75.tar.gz
releng-e6aad6ac6128eb8c9f143c964b59da9aac5bbb75.tar.xz
releng-e6aad6ac6128eb8c9f143c964b59da9aac5bbb75.zip
Fix up the rsync flags, and make sure we set right variables.
-rwxr-xr-xscripts/buildrawhide7
1 files changed, 5 insertions, 2 deletions
diff --git a/scripts/buildrawhide b/scripts/buildrawhide
index eb0ac0c..a84e2b2 100755
--- a/scripts/buildrawhide
+++ b/scripts/buildrawhide
@@ -3,6 +3,9 @@
# runs currently on releng1.fedora.phx.redhat.com
DATE=$1
+RSYNC_OPTS="-rlptDHhv"
+DESTPATH="/pub/fedora/linux/development/"
+
[ -z "$DATE" ] && {
echo "usage: buildrawhide <date>"
@@ -47,9 +50,9 @@ mock -r fedora-rawhide-x86_64 --clean
[ -n "$NOSYNC" ] && exit $rc
cd /tmp
# data
-su ftpsync -c "rsync $RSYNC_OPTS -rlptDvHh --exclude repodata/ /mnt/koji/mash/rawhide-$DATE/development/ $DESTPATH"
+su ftpsync -c "rsync $RSYNC_OPTS --exclude repodata/ /mnt/koji/mash/rawhide-$DATE/development/ $DESTPATH"
# repodata & cleanup
-su ftpsync -c "rsync $RSYNC_OPTS -rlptDvHhavH --delete --delete-after /mnt/koji/mash/rawhide-$DATE/development/ $DESTPATH"
+su ftpsync -c "rsync $RSYNC_OPTS --delete --delete-after /mnt/koji/mash/rawhide-$DATE/development/ $DESTPATH"
if [ "$?" = "0" ]; then
cat /mnt/koji/mash/rawhide-$DATE/logs/treediff /mnt/koji/mash/rawhide-$DATE/logs/depcheck | su rawhide -c "mail -s 'rawhide report: '$DATE' changes' fedora-devel-list@redhat.com,fedora-test-list@redhat.com"
fi