#2158 Remove fedora 8 and 9 from fedora-updates-push script
Closed: Fixed None Opened 14 years ago by jwboyer.

We still have a cron job that runs every hour (or whatever) that rsyncs the updates for 8, 9, 10, and 11. We should probably remove the EOL releases from this script because it's dumb to be rsyncing them now.


{{{
diff --git a/configs/system/fedora-updates-push b/configs/system/fedora-updates-
index 29a0328..7e95dfd 100755
--- a/configs/system/fedora-updates-push
+++ b/configs/system/fedora-updates-push
@@ -3,24 +3,6 @@
SOURCE=/mnt/koji/mash/updates
DEST=/pub/fedora/linux/updates/

-for rel in 8 9; do

-rsync -rlptDvHh --delay-updates $RSYNC_OPTS --exclude "repodata/" \
- --exclude i386 --exclude ppc --exclude ppc64 --exclude SRPMS --exclude x
- $SOURCE/f$rel-updates/ $DEST/$rel/ &>/dev/null
-rsync -rlptDvHh --delay-updates $RSYNC_OPTS --delete --delete-after \
- --exclude i386 --exclude ppc --exclude ppc64 --exclude SRPMS --exclude x
- $SOURCE/f$rel-updates/ $DEST/$rel/ &>/dev/null
-
-rsync -rlptDvHh --delay-updates $RSYNC_OPTS --exclude "repodata/
" \
- --exclude i386 --exclude ppc --exclude ppc64 --exclude SRPMS --exclude x
- $SOURCE/f$rel-updates-testing/ $DEST/testing/$rel/ &>/dev/null
-rsync -rlptDvHh --delay-updates $RSYNC_OPTS --delete --delete-after \
- --exclude i386 --exclude ppc --exclude ppc64 --exclude SRPMS --exclude x
- $SOURCE/f$rel-updates-testing/ $DEST/testing/$rel/ &>/dev/null
-
-done
-
for rel in 10 11; do

rsync -rlptDvHh --delay-updates $RSYNC_OPTS --exclude "repodata/*" \
}}}

That should do it.

Looks good to me, feel free to push.

Login to comment on this ticket.

Metadata