Browse Source

[1858] (unrelated cleanup) removed BIND10_START_AS_NON_ROOT_AUTH log.

with the introduction of socket creation this log message hasn't been
making sense.  It would be rather confusing and harmful.
JINMEI Tatuya 12 years ago
parent
commit
ae0565a4ed
2 changed files with 0 additions and 9 deletions
  1. 0 7
      src/bin/bind10/bind10_messages.mes
  2. 0 2
      src/bin/bind10/bind10_src.py.in

+ 0 - 7
src/bin/bind10/bind10_messages.mes

@@ -298,13 +298,6 @@ During the startup process, a number of messages are exchanged between the
 Boss process and the processes it starts.  This error is output when a
 message received by the Boss process is not recognised.
 
-% BIND10_START_AS_NON_ROOT_AUTH starting b10-auth as a user, not root. This might fail.
-The authoritative server is being started or restarted without root privileges.
-If the module needs these privileges, it may have problems starting.
-Note that this issue should be resolved by the pending 'socket-creator'
-process; once that has been implemented, modules should not need root
-privileges anymore. See tickets #800 and #801 for more information.
-
 % BIND10_START_AS_NON_ROOT_RESOLVER starting b10-resolver as a user, not root. This might fail.
 The resolver is being started or restarted without root privileges.
 If the module needs these privileges, it may have problems starting.

+ 0 - 2
src/bin/bind10/bind10_src.py.in

@@ -546,8 +546,6 @@ class BoB:
         """
             Start the Authoritative server
         """
-        if self.uid is not None and self.__started:
-            logger.warn(BIND10_START_AS_NON_ROOT_AUTH)
         authargs = ['b10-auth']
         if self.verbose:
             authargs += ['-v']