3 # Executed daily via cron, out of troup's crontab.
6 export SCRIPTVARS=/org/non-us.debian.org/katie/vars-non-US
9 ################################################################################
11 echo Archive maintenance started at $(date +%X)
13 NOTICE="$ftpdir/Archive_Maintenance_In_Progress"
22 Packages are currently being installed and indices rebuilt.
23 Maintenance is automatic, starting at 13:52 US Central time, and
24 ending at about 15:30. This file is then removed.
26 You should not mirror the archive during this period.
29 ################################################################################
31 echo "Creating pre-daily-cron-job backup of projectb database..."
32 pg_dump projectb > /org/non-us.debian.org/backup/dump_$(date +%Y.%m.%d-%H:%M:%S)
34 ################################################################################
38 katie -pak *.changes | direport | tee REPORT | \
39 mail -s "Non-US Install for $(date +%D)" ftpmaster@ftp-master.debian.org
44 symlinks -d -r $ftpdir
49 cd /org/non-us.debian.org/database/dists/
50 rm -f proposed-updates_-_all.list
51 for i in proposed-updates_-_binary-* proposed-updates_-_source.list; do cat $i >> proposed-updates_-_all.list; done
53 # Generate override files
57 rm -f override.potato.all3
58 for i in main contrib non-free; do cat override.potato.$i >> override.potato.all3; done
60 # Generate Packages and Sources files
62 apt-ftparchive generate apt.conf-non-US
63 # Generate Release files
66 # Clean out old packages
70 charisma > .new-maintainers
71 mv -f .new-maintainers Maintainers
72 gzip -9v <Maintainers >.new-maintainers.gz
73 mv -f .new-maintainers.gz Maintainers.gz
80 echo Archive maintenance finished at $(date +%X)
82 ################################################################################
84 echo "Creating post-daily-cron-job backup of projectb database..."
85 pg_dump projectb > /org/non-us.debian.org/backup/dump_$(date +%Y.%m.%d-%H:%M:%S)
87 ################################################################################
89 ulimit -m 90000 -d 90000 -s 10000 -v 90000
91 run-parts --report /org/non-us.debian.org/scripts/distmnt
93 echo Daily cron scripts successful.