mirror of
https://gitlab.com/xonotic/xonotic
synced 2025-02-02 03:31:48 +00:00
29 lines
655 B
Bash
Executable File
29 lines
655 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
exec >/dev/null 2>&1
|
|
|
|
me=/var/tmp/git-mirror-lock
|
|
if ! lockfile-create "$me"; then
|
|
exit 1
|
|
fi
|
|
lockfile-touch "$me" & lockpid=$!
|
|
trap 'kill $lockpid || true; cd "$mepwd"; lockfile-remove "$me"' EXIT
|
|
trap 'exit 1' INT TERM
|
|
|
|
mkdir -p /var/cache/git/xonotic
|
|
cd /var/cache/git/xonotic
|
|
ssh xonotic@git.xonotic.org ./send-git-configs.sh | tar xvf -
|
|
|
|
for X in /var/cache/git/*/*.git; do
|
|
cd "$X"
|
|
git config remote.origin.fetch "+refs/*:refs/*"
|
|
git config remote.origin.mirror "true"
|
|
git config remote.origin.url "git://git.xonotic.org/${X#/var/cache/git/}"
|
|
git fetch
|
|
git remote prune origin
|
|
git gc --auto
|
|
touch git-daemon-export-ok
|
|
done
|