]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
3206. [cleanup] Add ISC information to log at start time. [RT #25484]
authorEvan Hunt <each@isc.org>
Sat, 5 Nov 2011 00:46:27 +0000 (00:46 +0000)
committerEvan Hunt <each@isc.org>
Sat, 5 Nov 2011 00:46:27 +0000 (00:46 +0000)
CHANGES
bin/named/main.c

diff --git a/CHANGES b/CHANGES
index 8c1990ee6df1a3847dee716d774c1b8145b48a98..43361560d14bf4c4f7094dbf7346c70eff8c4ed4 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,5 @@
+3206.  [cleanup]       Add ISC information to log at start time. [RT #25484]
+
 3204.  [bug]           When a master server that has been marked as
                        unreachable sends a NOTIFY, mark it reachable
                        again. [RT #25960]
index 332d826c910927bd3eddc5c434c28c37efda275e..ead6acce311f2333d507a77dab085afaa7baeb3a 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: main.c,v 1.166.34.10 2011/08/30 12:23:15 marka Exp $ */
+/* $Id: main.c,v 1.166.34.11 2011/11/05 00:46:27 each Exp $ */
 
 /*! \file */
 
@@ -691,6 +691,25 @@ setup(void) {
        isc_log_write(ns_g_lctx, NS_LOGCATEGORY_GENERAL, NS_LOGMODULE_MAIN,
                      ISC_LOG_NOTICE, "built with %s", ns_g_configargs);
 
+       isc_log_write(ns_g_lctx, NS_LOGCATEGORY_GENERAL, NS_LOGMODULE_MAIN,
+                     ISC_LOG_NOTICE,
+                     "----------------------------------------------------");
+       isc_log_write(ns_g_lctx, NS_LOGCATEGORY_GENERAL, NS_LOGMODULE_MAIN,
+                     ISC_LOG_NOTICE,
+                     "BIND 9 is maintained by Internet Systems Consortium,");
+       isc_log_write(ns_g_lctx, NS_LOGCATEGORY_GENERAL, NS_LOGMODULE_MAIN,
+                     ISC_LOG_NOTICE,
+                     "Inc. (ISC), a non-profit 501(c)(3) public-benefit ");
+       isc_log_write(ns_g_lctx, NS_LOGCATEGORY_GENERAL, NS_LOGMODULE_MAIN,
+                     ISC_LOG_NOTICE,
+                     "corporation.  Support and training for BIND 9 are ");
+       isc_log_write(ns_g_lctx, NS_LOGCATEGORY_GENERAL, NS_LOGMODULE_MAIN,
+                     ISC_LOG_NOTICE,
+                     "available at https://www.isc.org/support");
+       isc_log_write(ns_g_lctx, NS_LOGCATEGORY_GENERAL, NS_LOGMODULE_MAIN,
+                     ISC_LOG_NOTICE,
+                     "----------------------------------------------------");
+
        /*
         * Get the initial resource limits.
         */