diff --git a/doc/ubuntu-safe-to-upload.1 b/doc/ubuntu-safe-to-upload.1 index 4328d35..3758b38 100644 --- a/doc/ubuntu-safe-to-upload.1 +++ b/doc/ubuntu-safe-to-upload.1 @@ -38,6 +38,11 @@ This is faster than source packages, as otherwise we must query LP to determine the binary packages that every specified source package builds. .TP +\fB\-u\fR \fIURL\fR, \fB\-\-data\-url\fR=\fIURL\fR +URL for index of seeded packages. +Default: UbuntuWire's service at +\fBhttp://people.ubuntuwire.org/~stefanor/ubuntu-seeded-packages/seeded.json.gz\fR. +.TP \fB\-h\fR, \fB\-\-help\fR Display a help message and exit diff --git a/ubuntu-safe-to-upload b/ubuntu-safe-to-upload index 6b3b24f..d2f7ffb 100755 --- a/ubuntu-safe-to-upload +++ b/ubuntu-safe-to-upload @@ -107,9 +107,9 @@ def main(): default=False, action='store_true', help="Binary packages are being specified, " "not source packages (fast)") - parser.add_option('-u', '--service-url', metavar='URL', + parser.add_option('-u', '--data-url', metavar='URL', default=DATA_URL, - help='Reverse Dependencies webservice URL. ' + help='URL for the seeded packages index. ' 'Default: UbuntuWire') options, args = parser.parse_args()