diff --git a/webtools/bugzilla/contrib/bugzilla-submit/bugzilla-submit.xml b/webtools/bugzilla/contrib/bugzilla-submit/bugzilla-submit.xml index 2ffa9b60102f..ada0c475b3bb 100644 --- a/webtools/bugzilla/contrib/bugzilla-submit/bugzilla-submit.xml +++ b/webtools/bugzilla/contrib/bugzilla-submit/bugzilla-submit.xml @@ -53,7 +53,11 @@ instance specified by the single positional argument. Login/password credentials are read from the calling user's ~/.netrc file. -The program accepts the following options to set or override fields: +bugzilla-submit accepts a single argument: +bugzilla-url. Its value must match the +relevant Bugzilla instance's base URL (technically, its +urlbase param). The program also accepts the +following options to set or override fields: -b. --bug-status @@ -187,7 +191,23 @@ the bug is to be submitted. Must contain an entry in which the machine field is the Bugzilla instance URL, the login field is your ID on that host, and the password field is the right password. The URL in the machine field -must be enclosed in double quotes. +must be enclosed in double quotes. + +For example, if your Bugzilla instance is at +"http://landfill.bugzilla.org/bztest/", and your login and password +there are "john@doe.com" and "foo", respectively, your +.netrc entry should look something like: + + +machine "http://landfill.bugzilla.org/bztest/" +login john@doe.com +password foo + + +Note that the machine entry should match exactly the instance URL +specified to bugzilla-submit. + +