root/alternc-slavedns/trunk/defaults.conf

Revision 1684, 1.5 kB (checked in by anarcat, 2 years ago)

rename slavedns.conf to defaults.conf and make the file a real defaults file that initializes the variables before each site

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1 # Default configuration for alternc-slavedns
2 # this file (called defaults.conf) WILL ALWAYS BE IGNORED by the cron task.
3 #
4 # This file is sourced from a bourne shell and shell syntax must be correct.
5 # The defaults file is sourced before the site-specific configurations
6
7 # you must set this or the full URL below
8 PROTOCOL=http
9 HOST=
10
11 # Hostname http[s] of the master dns server, notice how it defaults to alternc setup
12 #URL=${PROTOCOL}://${HOST}/admin/domlist.php
13
14 # IP Address of the master dns server, defaults to the contacted host
15 MASTERIP=${HOST}
16
17 # Login of the slave to connect to the server (the primary dns administrator will give it to you.)
18 # optional
19 LOGIN=
20
21 # Password of the slave to connect to the server
22 # optional
23 PASSWORD=
24
25 # That's all. at most one hour after you put a new file in this directory,
26 # slavedns will try to synchronize it's domain list
27 # you may launch manually the synchronization with "/usr/sbin/slavedns"
28
29 # you can override the default config with those settings
30 # CONFDIR=/etc/slavedns
31 # CACHEDIR=/var/cache/slavedns
32 # BINDDIR=/etc/bind/slavedns
33 # BINDINCLUDE=/etc/bind/slavedns.conf
34 # WGET=wget
35 # WGETFLAGS=""
36 # WGETRC=${HOME}/.wgetrc
37 # NAMED="/usr/pkg/etc/rc.d/named9 restart" # BIND9 on NetBSD
38 # NAMED="/etc/rc.d/named restart" # BIND8 on NetBSD/OpenBSD
39 # NAMED="ndc restart" # generic
40 # NAMED="/etc/init.d/named restart" # BIND8 on some Linux
41 # NAMED="/etc/init.d/named9 restart" # BIND9 on some Linux
42 # NAMED="/etc/init.d/bind restart" # BIND8 on other Linux
43 # NAMED="/etc/init.d/bind9 restart" # BIND9 on other Linux
Note: See TracBrowser for help on using the browser.