You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-admin/gentoo-rsync-mirror/files/rsync-gentoo-portage.sh

11 lines
332 B

#!/bin/bash
source /etc/rsync/gentoo-mirror.conf
echo "Started update at" `date` >> $0.log 2>&1
logger -t rsync "re-rsyncing the gentoo-portage tree"
${RSYNC} ${OPTS} ${SRC} ${DST} >> $0.log 2>&1
logger -t rsync "deleting spurious Changelog files"
find ${DST} -iname ".ChangeLog*" | xargs rm -rf
echo "End: "`date` >> $0.log 2>&1