#!/bin/bash -e

. /etc/repoman.conf

cd /pub/other/homepage-ng/git/repos
for i in *
do
	cd $i
	echo $i
	git push --mirror git@github:frugalware/$i.git || true
	git push --mirror git@gitlab:frugalware/$i.git || true
	cd -
done
