make the Non-US server entry added to .jigdo files by publish_cds point
at the new non-US.cdimage.debian.org name for open, so we can move cdimage.d.o to raff.d.o in the near future.
This commit is contained in:
parent
ed63a0bf65
commit
4949337269
2
CONF.sh
2
CONF.sh
|
@ -27,6 +27,7 @@ unset DEFBINSIZE
|
|||
unset DEFSRCSIZE
|
||||
unset FASTSUMS
|
||||
unset PUBLISH_URL
|
||||
unset PUBLISH_NONUS_URL
|
||||
unset PUBLISH_PATH
|
||||
|
||||
|
||||
|
@ -176,5 +177,6 @@ export DEFSRCSIZE=635
|
|||
# a couple of things used by publish_cds, so it can tweak the jigdo files,
|
||||
# and knows where to put the results
|
||||
export PUBLISH_URL="http://cdimage.debian.org/jigdo-area"
|
||||
export PUBLISH_NONUS_URL="http://non-US.cdimage.debian.org/jigdo-area"
|
||||
export PUBLISH_PATH="/home/jigdo-area/"
|
||||
|
||||
|
|
|
@ -23,6 +23,7 @@ unset DEFBINSIZE
|
|||
unset DEFSRCSIZE
|
||||
unset FASTSUMS
|
||||
unset PUBLISH_URL
|
||||
unset PUBLISH_NONUS_URL
|
||||
unset PUBLISH_PATH
|
||||
|
||||
|
||||
|
@ -171,4 +172,5 @@ export DEFSRCSIZE=635
|
|||
# a couple of things used by publish_cds, so it can tweak the jigdo files,
|
||||
# and knows where to put the results
|
||||
export PUBLISH_URL="http://cdimage.debian.org/jigdo-area"
|
||||
export PUBLISH_NONUS_URL="http://non-US.cdimage.debian.org/jigdo-area"
|
||||
export PUBLISH_PATH="/home/jigdo-area/"
|
||||
|
|
|
@ -79,10 +79,12 @@ my $mirror_dir = $conf{'MIRROR'} ;
|
|||
my $nonus_dir = $conf{'NONUS'} ;
|
||||
my $tdir = $conf{'TDIR'} ;
|
||||
my $publish_url = $conf{'PUBLISH_URL'} ;
|
||||
my $publish_nonus_url = $conf{'PUBLISH_NONUS_URL'} ;
|
||||
my $publish_path = $conf{'PUBLISH_PATH'} ;
|
||||
|
||||
my $to_dir = $publish_path . "/" . $cd_version . "/" ;
|
||||
my $fallback_url = $publish_url . "/$cd_version/snapshot/" ;
|
||||
my $fallback_nonus_url = $publish_nonus_url . "/$cd_version/snapshot/" ;
|
||||
|
||||
my @archs ;
|
||||
if ($#ARGV >= 0) {
|
||||
|
@ -190,7 +192,7 @@ for my $arch (@archs) {
|
|||
$jigdo_gz->gzwrite($_ . "\n") ;
|
||||
}
|
||||
$jigdo_gz->gzwrite(sprintf "\n[Servers]\nDebian=%s\nNon-US=%s\n",
|
||||
$fallback_url, $fallback_url);
|
||||
$fallback_url, $fallback_nonus_url);
|
||||
|
||||
$jigdo_gz->gzclose() ;
|
||||
close(JIGDO);
|
||||
|
|
Loading…
Reference in New Issue