move publish_cds into the tools directory, update it to the version

currently in use, and add the variables it needs to CONF.sh
This commit is contained in:
Philip Hands 2002-05-06 10:23:32 +00:00
parent 08b8e247f5
commit 9fac563381
2 changed files with 17 additions and 1 deletions

View File

@ -26,6 +26,8 @@ unset JIGDOTEMPLATEURL
unset DEFBINSIZE unset DEFBINSIZE
unset DEFSRCSIZE unset DEFSRCSIZE
unset FASTSUMS unset FASTSUMS
unset PUBLISH_URL
unset PUBLISH_PATH
# The debian-cd dir # The debian-cd dir
@ -171,3 +173,8 @@ export DEFSRCSIZE=635
# them locally # them locally
#export FASTSUMS=1 #export FASTSUMS=1
# a couple of things used by publish_cds, so it can twaek the jigdo files,
# and knows where to put the results
export PUBLISH_URL="http://cdimage.debian.org/jigdo-area"
export PUBLISH_PATH="/home/jigdo-area/"

View File

@ -7,7 +7,16 @@
# This script creates the md5sums files, using the precalculated md5sums # This script creates the md5sums files, using the precalculated md5sums
# from the main archive # from the main archive
# First arg = the place that gets published as http://.../debian-cd/ #
# First arg = the version directory name to target
#
# subsequent optional arguments are the architectures to publish
# If omited, the script will use all the directories in the $OUT
# directory as the architectures to publish.
#
# For example:
# ./tools/publish_cds 3.0-pre2 i386 src m68k
#
use strict; use strict;
use MIME::Base64; use MIME::Base64;