Skip to content
repo-rsync 1.47 KiB
Newer Older
Seblu's avatar
Seblu committed
#!/bin/bash -e

# Copyright © Sébastien Luttringer
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

[[ -t 1 ]] && set -x

UPSTREAM='rsync://pkgbuild.com/packages/'
LOCKFILE=~/."${0##*/}".lock
Seblu's avatar
Seblu committed
BASE=/srv/ftp/archlinux/archive/repos
Seblu's avatar
Seblu committed
SNAPR="$(date +%Y/%m/%d)"
Seblu's avatar
Seblu committed
SNAP="$BASE/$SNAPR"
LAST="$(ls -1d "$BASE"/*/*/*|sort|tail -n1)"
Seblu's avatar
Seblu committed

# we lock!
exec 9> "$LOCKFILE"
flock -n 9 || { echo 'Locking Failed' >&2; exit 1; }

# nice umask
umask 022

# ensure destination exists
[[ -d $SNAP ]] || mkdir -p "$SNAP"

Seblu's avatar
Seblu committed
# display info
echo starting rsync
echo   snapshot is: $SNAP
echo   last is: $LAST

Seblu's avatar
Seblu committed
# Rsync from master using last sync
# We must use absolute path with --link-dest to avoid errors
rsync  -rltH --link-dest="$LAST/" --exclude '*/.*' "$UPSTREAM" "$SNAP/"

# only to have a quick check of sync in listdir
touch "$SNAP"

# vim:set sw=2 ts=2 ft=sh et: