17 lines
578 B
Bash
Executable File
17 lines
578 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# autodist-upstream-updates daily cron script
|
|
# (c) 2008-2012 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
|
#
|
|
. /etc/autodist/config
|
|
REPOSITORY=devel
|
|
/usr/sbin/autodist-upstream-updates -h -u -r $REPOSITORY > $LOCAL_REPS_BASE_DIR/distromatic/$REPOSITORY/_popular.html
|
|
|
|
REPOSITORY=milestone1-1.1
|
|
/usr/sbin/autodist-upstream-updates -h -u -r $REPOSITORY > $LOCAL_REPS_BASE_DIR/distromatic/$REPOSITORY/_popular.html
|
|
|
|
REPOSITORY=milestone2
|
|
/usr/sbin/autodist-upstream-updates -h -u -r $REPOSITORY > $LOCAL_REPS_BASE_DIR/distromatic/$REPOSITORY/_popular.html
|
|
|
|
exit 0
|