doc/requestsync.1: Also update the manpage about the changed default.

pull-debian-source: Change default release to pull from to 'testing'
 and also update the manpage about it
This commit is contained in:
Michael Bienia 2009-11-02 19:20:56 +01:00
parent 87660fb375
commit fdb2e2d4d6
3 changed files with 3 additions and 3 deletions

View File

@ -23,7 +23,7 @@ This is the source package that you would like to be downloaded from Debian.
.TP
.B [target release]
This is the release that you would like the source package to be downloaded from.
This value defaults to 'unstable'.
This value defaults to 'testing'.
.SH AUTHOR
.PP

View File

@ -40,7 +40,7 @@ Display a help message and exit.
.TP
.B \-d
Specifies which Debian distribution a package should be synced from.
Default is \fIunstable\fR.
Default is \fItesting\fR.
.TP
.B \-n
Specifies that the package is a new package, and requestsync should not

View File

@ -29,7 +29,7 @@ my($package)=$ARGV[0] || &usage();
my($help)=0;
GetOptions('help' => \$help);
&usage() if($help);
my($release)=$ARGV[1] || 'unstable';
my($release)=$ARGV[1] || 'testing';
$release=&convertCodeName($release);
&checkRelease($release);
my($dsc)=&getDSC(&getMadison(&getURL($package,$release)));