BIND 10 trac1819, updated. 13c15d11c29d01db5bd4f35862a881bf67348467 bug #1819: Document --no-kill option in bind10 manpage
BIND 10 source code commits
bind10-changes at lists.isc.org
Fri Mar 23 11:58:04 UTC 2012
The branch, trac1819 has been updated
via 13c15d11c29d01db5bd4f35862a881bf67348467 (commit)
via 342191d5cae2499338908cb0cf4daaa52329978e (commit)
from 3bd3d5018e3b297d75c98d054730262b42113179 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 13c15d11c29d01db5bd4f35862a881bf67348467
Author: Mukund Sivaraman <muks at isc.org>
Date: Fri Mar 23 17:27:32 2012 +0530
bug #1819: Document --no-kill option in bind10 manpage
commit 342191d5cae2499338908cb0cf4daaa52329978e
Author: Mukund Sivaraman <muks at isc.org>
Date: Fri Mar 23 17:27:08 2012 +0530
bug #1819: Update help text for no-kill option
-----------------------------------------------------------------------
Summary of changes:
src/bin/bind10/bind10.xml | 11 +++++++++++
src/bin/bind10/bind10_src.py.in | 2 +-
2 files changed, 12 insertions(+), 1 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/bin/bind10/bind10.xml b/src/bin/bind10/bind10.xml
index 1f3cb68..a41e976 100644
--- a/src/bin/bind10/bind10.xml
+++ b/src/bin/bind10/bind10.xml
@@ -45,6 +45,7 @@
<cmdsynopsis>
<command>bind10</command>
<arg><option>-c <replaceable>config-filename</replaceable></option></arg>
+ <arg><option>-i</option></arg>
<arg><option>-m <replaceable>file</replaceable></option></arg>
<arg><option>-n</option></arg>
<arg><option>-p <replaceable>data_path</replaceable></option></arg>
@@ -56,6 +57,7 @@
<arg><option>--data-path</option> <replaceable>directory</replaceable></arg>
<arg><option>--msgq-socket-file <replaceable>file</replaceable></option></arg>
<arg><option>--no-cache</option></arg>
+ <arg><option>--no-kill</option></arg>
<arg><option>--pid-file</option> <replaceable>filename</replaceable></arg>
<arg><option>--pretty-name <replaceable>name</replaceable></option></arg>
<arg><option>--user <replaceable>user</replaceable></option></arg>
@@ -156,6 +158,15 @@
</varlistentry>
<varlistentry>
+ <term><option>-i</option>, <option>--no-kill</option></term>
+ <listitem>
+ <para>When this option is passed, <command>bind10</command>
+ does not send SIGTERM and SIGKILL signals to modules during
+ shutdown.</para>
+ </listitem>
+ </varlistentry>
+
+ <varlistentry>
<term><option>-u</option> <replaceable>user</replaceable>, <option>--user</option> <replaceable>name</replaceable></term>
<!-- TODO: example more detail. -->
<listitem>
diff --git a/src/bin/bind10/bind10_src.py.in b/src/bin/bind10/bind10_src.py.in
index 5e1f44e..d002906 100755
--- a/src/bin/bind10/bind10_src.py.in
+++ b/src/bin/bind10/bind10_src.py.in
@@ -1049,7 +1049,7 @@ def parse_args(args=sys.argv[1:], Parser=OptionParser):
parser.add_option("-n", "--no-cache", action="store_true", dest="nocache",
default=False, help="disable hot-spot cache in authoritative DNS server")
parser.add_option("-i", "--no-kill", action="store_true", dest="nokill",
- default=False, help="do not send SIGTERM and SIGKILL signals to modules")
+ default=False, help="do not send SIGTERM and SIGKILL signals to modules during shutdown")
parser.add_option("-u", "--user", dest="user", type="string", default=None,
help="Change user after startup (must run as root)")
parser.add_option("-v", "--verbose", dest="verbose", action="store_true",
More information about the bind10-changes
mailing list