2012-12-01 17:18:36 +01:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# autodist-upstream-updates daily cron script
|
|
|
|
# (c) 2008-2012 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
|
|
|
#
|
|
|
|
. /etc/autodist/config
|
|
|
|
REPOSITORY=devel
|
2012-12-01 23:31:16 +01:00
|
|
|
/usr/sbin/autodist-upstream-updates -h -u -r $REPOSITORY > $LOCAL_REPS_BASE_DIR/distromatic/$REPOSITORY/_popular.html
|
2012-12-01 17:18:36 +01:00
|
|
|
|
|
|
|
REPOSITORY=milestone1-1.1
|
2012-12-01 23:31:16 +01:00
|
|
|
/usr/sbin/autodist-upstream-updates -h -u -r $REPOSITORY > $LOCAL_REPS_BASE_DIR/distromatic/$REPOSITORY/_popular.html
|
2012-12-01 17:18:36 +01:00
|
|
|
|
|
|
|
REPOSITORY=milestone2
|
2012-12-01 23:31:16 +01:00
|
|
|
/usr/sbin/autodist-upstream-updates -h -u -r $REPOSITORY > $LOCAL_REPS_BASE_DIR/distromatic/$REPOSITORY/_popular.html
|
2012-12-01 17:18:36 +01:00
|
|
|
|
|
|
|
exit 0
|