|
@@ -219,7 +219,7 @@ class BoB:
|
|
|
|
|
|
def __init__(self, msgq_socket_file=None, data_path=None,
|
|
|
config_filename=None, nocache=False, verbose=False, setuid=None,
|
|
|
- username=None, cmdctl_port=None, brittle=False, wait_time=10):
|
|
|
+ username=None, cmdctl_port=None, wait_time=10):
|
|
|
"""
|
|
|
Initialize the Boss of BIND. This is a singleton (only one can run).
|
|
|
|
|
@@ -233,9 +233,6 @@ class BoB:
|
|
|
The cmdctl_port is passed to cmdctl and specify on which port it
|
|
|
should listen.
|
|
|
|
|
|
- brittle is a debug option that controls whether the Boss shuts down
|
|
|
- after any process dies.
|
|
|
-
|
|
|
wait_time controls the amount of time (in seconds) that Boss waits
|
|
|
for selected processes to initialize before continuing with the
|
|
|
initialization. Currently this is only the configuration manager.
|
|
@@ -264,7 +261,6 @@ class BoB:
|
|
|
self.data_path = data_path
|
|
|
self.config_filename = config_filename
|
|
|
self.cmdctl_port = cmdctl_port
|
|
|
- self.brittle = brittle
|
|
|
self.wait_time = wait_time
|
|
|
self._component_configurator = isc.bind10.component.Configurator(self,
|
|
|
isc.bind10.special_component.get_specials())
|
|
@@ -940,8 +936,6 @@ def parse_args(args=sys.argv[1:], Parser=OptionParser):
|
|
|
parser.add_option("--pid-file", dest="pid_file", type="string",
|
|
|
default=None,
|
|
|
help="file to dump the PID of the BIND 10 process")
|
|
|
- parser.add_option("--brittle", dest="brittle", action="store_true",
|
|
|
- help="debugging flag: exit if any component dies")
|
|
|
parser.add_option("-w", "--wait", dest="wait_time", type="int",
|
|
|
default=10, help="Time (in seconds) to wait for config manager to start up")
|
|
|
|
|
@@ -1046,7 +1040,7 @@ def main():
|
|
|
# Go bob!
|
|
|
boss_of_bind = BoB(options.msgq_socket_file, options.data_path,
|
|
|
options.config_file, options.nocache, options.verbose,
|
|
|
- setuid, username, options.cmdctl_port, options.brittle,
|
|
|
+ setuid, username, options.cmdctl_port,
|
|
|
options.wait_time)
|
|
|
startup_result = boss_of_bind.startup()
|
|
|
if startup_result:
|