]> git.decadent.org.uk Git - dak.git/commitdiff
include backports archive in (pool) sync
authorJoerg Jaspert <joerg@debian.org>
Sun, 7 Apr 2013 19:14:00 +0000 (21:14 +0200)
committerJoerg Jaspert <joerg@debian.org>
Sun, 7 Apr 2013 19:14:00 +0000 (21:14 +0200)
scripts/debian/sync-dd

index 7022a5bf9f5e8a8b9a45d8376324eac3199e04f9..2a7dcb7835fb54a76908d1b5924f7307485b0e07 100755 (executable)
@@ -1,6 +1,6 @@
 #! /bin/bash
 
-# Copyright (C) 2011, Joerg Jaspert <joerg@debian.org>
+# Copyright (C) 2011,2013, Joerg Jaspert <joerg@debian.org>
 # Copyright (C) 2012, Ansgar Burchardt <ansgar@debian.org>
 #
 # This program is free software; you can redistribute it and/or
@@ -103,6 +103,18 @@ if lockfile -r3 "${lockfile}"; then
        /srv/ftp.debian.org/ "${host2}:/srv/ftp.debian.org/"
    # command for the remote side:
    # command="rsync --server -lHogDtpre.iLsf -B8192 --timeout=3600 --delete-after . /srv/ftp.debian.org/"
+
+   if [[ ${mode} == pool ]]; then
+       # Sync backports
+       rsync -aH -B8192 \
+           --delete --delete-after \
+           --timeout 3600 \
+           -e 'ssh -o ConnectTimeout=30 -o SetupTimeout=30' \
+           /srv/backports-master.debian.org/mirror/ \
+           ries-sync3:/srv/backports.debian.org/htdocs/debian-backports/
+       # And now tell static.debian.org that something changed
+       /usr/local/bin/static-update-component backports.debian.org
+   fi
 else
     echo "Couldn't get the lock, not syncing"
     exit 0