summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-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