X-Git-Url: https://git.donarmstrong.com/?p=bugscan.git;a=blobdiff_plain;f=bugcfg.pm;h=d6ad3a83a481dfc692810f50ba2baa2e49a5252b;hp=956b4347e67458bd35321ce82dd59450a8aeb102;hb=aecd3f529cfcff5653d4bc4125725949053d8ddf;hpb=13390cbec5be291e002863d8739cbdfa18d073c9 diff --git a/bugcfg.pm b/bugcfg.pm index 956b434..d6ad3a8 100644 --- a/bugcfg.pm +++ b/bugcfg.pm @@ -1,5 +1,5 @@ #! /usr/bin/perl -# vim: ts=4 sw=4 nowrap +# vim: ts=8 sw=8 nowrap use strict; use warnings; @@ -10,7 +10,7 @@ our ($spooldir,$maintainerlist,$debian_ftproot,$debian_sources,$pseudolist); my $host=`hostname`; chomp $host; -if ($host eq "master" or $host eq "spohr" or $host eq "rietz") { +if ($host eq "master" or $host eq "spohr" or $host eq "rietz" or $host eq "busoni") { $spooldir = "/org/bugs.debian.org/debbugs/spool/db-h"; $maintainerlist = "/etc/debbugs/Maintainers"; $debian_ftproot = "/org/bugs.debian.org/etc/indices/ftp/testing"; @@ -26,8 +26,8 @@ if ($host eq "master" or $host eq "spohr" or $host eq "rietz") { die "Unknown machine, please configure paths in bugcfg.pm\n"; } -our $btsURL = "http://www.debian.org/Bugs/"; -our @architectures = ( "i386", "m68k", "alpha", "sparc", "powerpc", "arm", "hppa", "ia64", "mips", "mipsel", "s390" ); +# alpha excluded to RM request +our @architectures = ( "i386", "amd64", "sparc", "powerpc", "armel", "hppa", "ia64", "mips", "mipsel", "s390" ); our @sections = ( "main", "contrib", "non-free" ); our @priorities = ( "serious", "grave", "critical" ); our @skiptags = ( );