3 # Executed daily via cron, out of troup's crontab.
6 export SCRIPTVARS=/org/ftp.debian.org/katie/vars
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/ftp.debian.org/backup/dump_$(date +%Y.%m.%d-%H:%M:%S)
34 ################################################################################
38 update-mailingliststxt
40 ################################################################################
44 katie -pak *.changes | direport | tee REPORT | \
45 mail -s "Install for $(date +%D)" ftpmaster@ftp-master.debian.org
52 symlinks -d -r $ftpdir
58 cd /org/ftp.debian.org/database/dists/
59 rm -f proposed-updates_-_all.list
60 for i in proposed-updates_-_binary-* proposed-updates_-_source.list; do cat $i >> proposed-updates_-_all.list; done
62 # Generate override files
66 rm -f override.potato.all3
67 for i in main contrib non-free; do cat override.potato.$i >> override.potato.all3; done
69 # Generate Packages and Sources files
71 apt-ftparchive generate apt.conf
72 # Generate Release files
75 # Clean out old packages
84 echo Archive maintenance finished at $(date +%X)
86 ################################################################################
88 echo "Creating post-daily-cron-job backup of projectb database..."
89 pg_dump projectb > /org/ftp.debian.org/backup/dump_$(date +%Y.%m.%d-%H:%M:%S)
91 ################################################################################
94 echo "VACUUM; VACUUM ANALYZE;" | psql projectb 2>&1 | grep -v "^NOTICE: Skipping.*only table owner can VACUUM it$"
96 ################################################################################
98 ulimit -m 90000 -d 90000 -s 10000 -v 90000
100 run-parts --report /org/ftp.debian.org/scripts/distmnt
102 echo Daily cron scripts successful.