diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/RELEASING | 6 | ||||
-rw-r--r-- | doc/developer-guidelines.sgml | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/doc/RELEASING b/doc/RELEASING index eee53d7b..30c81ccf 100644 --- a/doc/RELEASING +++ b/doc/RELEASING | |||
@@ -19,15 +19,15 @@ git push origin master | |||
19 | git push origin v2.1.1 | 19 | git push origin v2.1.1 |
20 | 20 | ||
21 | *** Checkout new version | 21 | *** Checkout new version |
22 | rm -fr /tmp/monitoringlug | 22 | rm -fr /tmp/monitoringplug |
23 | # If you need to checkout the tag, don't forget to "checkout master" later to | 23 | # If you need to checkout the tag, don't forget to "checkout master" later to |
24 | # get back to your development branch: | 24 | # get back to your development branch: |
25 | git checkout tags/v2.1.1 | 25 | git checkout tags/v2.1.1 |
26 | # Beware: the trailing slash of --prefix is REQUIRED | 26 | # Beware: the trailing slash of --prefix is REQUIRED |
27 | git checkout-index --prefix=/tmp/monitoringlug/ -a | 27 | git checkout-index --prefix=/tmp/monitoringplug/ -a |
28 | 28 | ||
29 | *** Build the tarball | 29 | *** Build the tarball |
30 | cd /tmp/monitoringlug | 30 | cd /tmp/monitoringplug |
31 | tools/setup | 31 | tools/setup |
32 | ./configure | 32 | ./configure |
33 | make dist | 33 | make dist |
diff --git a/doc/developer-guidelines.sgml b/doc/developer-guidelines.sgml index d9340285..6f31f365 100644 --- a/doc/developer-guidelines.sgml +++ b/doc/developer-guidelines.sgml | |||
@@ -194,12 +194,13 @@ | |||
194 | <row> | 194 | <row> |
195 | <entry align="center"><para>3</para></entry> | 195 | <entry align="center"><para>3</para></entry> |
196 | <entry valign="middle"><para>Unknown</para></entry> | 196 | <entry valign="middle"><para>Unknown</para></entry> |
197 | <entry><para>Invalid command line arguments were supplied to the | 197 | <entry><para>Invalid command line arguments were supplied to the |
198 | plugin or low-level failures internal to the plugin (such as unable to fork, | 198 | plugin or low-level failures internal to the plugin (such as unable to fork, |
199 | or open a tcp socket) that prevent it from performing the specified | 199 | or open a tcp socket) that prevent it from performing the specified |
200 | operation. Higher-level errors (such as name resolution errors, | 200 | operation. Higher-level errors (such as name resolution errors, |
201 | socket timeouts, etc) are outside of the control of plugins and should | 201 | socket timeouts, etc) are outside of the control of plugins and should |
202 | generally NOT be reported as UNKNOWN states. | 202 | generally NOT be reported as UNKNOWN states. |
203 | </para><para>The --help or --version output should also result in Unknown state. | ||
203 | </para></entry> | 204 | </para></entry> |
204 | </row> | 205 | </row> |
205 | </tbody> | 206 | </tbody> |
@@ -610,6 +611,9 @@ | |||
610 | <para>The option -v or --verbose should be present in all plugins. | 611 | <para>The option -v or --verbose should be present in all plugins. |
611 | The user should be allowed to specify -v multiple times to increase | 612 | The user should be allowed to specify -v multiple times to increase |
612 | the verbosity level, as described in <xref linkend="verboselevels">.</para> | 613 | the verbosity level, as described in <xref linkend="verboselevels">.</para> |
614 | |||
615 | <para>The exit code for version information or help should be UNKNOWN | ||
616 | (3).</para> | ||
613 | </section> | 617 | </section> |
614 | 618 | ||
615 | <section> | 619 | <section> |