1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-24 13:57:43 +03:00

r24640: Add a suggested BIND configuration snippit, to help with DNS configuration.

When we sort out GSS-TSIG on the server, we can expand this to have
the 'right stuff'.

Andrew Bartlett
(This used to be commit 8f02ade1b2cc164f64f4ea8a371c107ccf6a81b3)
This commit is contained in:
Andrew Bartlett 2007-08-24 01:57:54 +00:00 committed by Gerald (Jerry) Carter
parent f2464adbbc
commit 2da0be9d5e
2 changed files with 16 additions and 1 deletions

View File

@ -386,6 +386,7 @@ function provision_default_paths(subobj)
paths.secrets = lp.get("secrets database");
paths.keytab = "secrets.keytab";
paths.dns = lp.get("private dir") + "/" + dnsdomain + ".zone";
paths.named_conf = lp.get("private dir") + "/named.conf";
paths.winsdb = "wins.ldb";
paths.ldapdir = lp.get("private dir") + "/ldap";
paths.ldap_basedn_ldif = paths.ldapdir + "/" + dnsdomain + ".ldif";
@ -833,7 +834,11 @@ function provision_dns(subobj, message, paths, session_info, credentials)
message, paths.dns,
subobj);
message("Please install the zone located in " + paths.dns + " into your DNS server\n");
setup_file("named.conf",
message, paths.named_conf,
subobj);
message("Please install the zone located in " + paths.dns + " into your DNS server. A sample BIND configuration snippit is at " + paths.named_conf + "\n");
}
/* Write out a DNS zone file, from the info in the current database */

10
source4/setup/named.conf Normal file
View File

@ -0,0 +1,10 @@
#
# Insert this snippit into your named.conf or bind.conf to configure
# the BIND nameserver.
#
zone "${DNSDOMAIN}." IN {
type master;
file "${DNSDOMAIN}.zone";
};