openmamba-headserver-tools/etc/cron.daily/40-openmamba-upstream-updates

17 lines
555 B
Plaintext
Raw Normal View History

#!/bin/bash
#
# openmamba-upstream-updates daily cron script
# (c) 2008-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
#
. /etc/sysconfig/openmamba-central
REPOSITORY=devel
/usr/sbin/openmamba-upstream-updates -h -r $REPOSITORY > $local_ftp/distromatic/$REPOSITORY/_popular.html
REPOSITORY=milestone1-1.1
/usr/sbin/openmamba-upstream-updates -h -r $REPOSITORY > $local_ftp/distromatic/$REPOSITORY/_popular.html
REPOSITORY=milestone2
/usr/sbin/openmamba-upstream-updates -h -r $REPOSITORY > $local_ftp/distromatic/$REPOSITORY/_popular.html
exit 0