2012-12-01 17:18:36 +01:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# autodist-upstream-updates daily cron script
|
2014-06-10 01:52:14 +02:00
|
|
|
# (c) 2008-2014 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
2012-12-01 17:18:36 +01:00
|
|
|
#
|
|
|
|
. /etc/autodist/config
|
2014-06-10 01:52:14 +02:00
|
|
|
. /etc/sysconfig/autoport
|
2012-12-01 17:18:36 +01:00
|
|
|
|
2014-06-10 01:52:14 +02:00
|
|
|
if [ ! "$AUTOPORT_UPDATE_NO_DISTROMATIC" ]; then
|
|
|
|
REPOSITORY=devel
|
|
|
|
/usr/sbin/autodist-upstream-updates -q -h -u -r $REPOSITORY > $LOCAL_REPS_BASE_DIR/distromatic/$REPOSITORY/_popular.html
|
2012-12-01 17:18:36 +01:00
|
|
|
|
2014-06-10 01:52:14 +02:00
|
|
|
REPOSITORY=milestone1-1.1
|
|
|
|
/usr/sbin/autodist-upstream-updates -q -h -u -r $REPOSITORY > $LOCAL_REPS_BASE_DIR/distromatic/$REPOSITORY/_popular.html
|
|
|
|
|
|
|
|
REPOSITORY=milestone2
|
|
|
|
/usr/sbin/autodist-upstream-updates -q -h -u -r $REPOSITORY > $LOCAL_REPS_BASE_DIR/distromatic/$REPOSITORY/_popular.html
|
|
|
|
fi
|
2012-12-01 17:18:36 +01:00
|
|
|
|
|
|
|
exit 0
|