Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mailinabox
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
mailinabox
Commits
8886c9b6
Commit
8886c9b6
authored
May 04, 2015
by
Joshua Tauberer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
move the server: block of nsd.conf out of the management daemon and into the setup scripts
parent
a07de38e
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
26 deletions
+33
-26
dns_update.py
management/dns_update.py
+11
-26
dns.sh
setup/dns.sh
+22
-0
No files found.
management/dns_update.py
View file @
8886c9b6
...
...
@@ -432,25 +432,9 @@ $TTL 1800 ; default time to live
########################################################################
def
write_nsd_conf
(
zonefiles
,
additional_records
,
env
):
# Basic header.
nsdconf
=
"""
server:
hide-version: yes
# identify the server (CH TXT ID.SERVER entry).
identity: ""
# The directory for zonefile: files.
zonesdir: "/etc/nsd/zones"
"""
# Since we have bind9 listening on localhost for locally-generated
# DNS queries that require a recursive nameserver, and the system
# might have other network interfaces for e.g. tunnelling, we have
# to be specific about the network interfaces that nsd binds to.
for
ipaddr
in
(
env
.
get
(
"PRIVATE_IP"
,
""
)
+
" "
+
env
.
get
(
"PRIVATE_IPV6"
,
""
))
.
split
(
" "
):
if
ipaddr
==
""
:
continue
nsdconf
+=
" ip-address:
%
s
\n
"
%
ipaddr
# Write the list of zones to a configuration file.
nsd_conf_file
=
"/etc/nsd/zones.conf"
nsdconf
=
""
# Append the zones.
for
domain
,
zonefile
in
zonefiles
:
...
...
@@ -472,16 +456,17 @@ zone:
provide-xfr:
%
s NOKEY
"""
%
(
ipaddr
,
ipaddr
)
# Check if the nsd.conf is changing. If it isn't changing,
# Check if the file is changing. If it isn't changing,
# return False to flag that no change was made.
with
open
(
"/etc/nsd/nsd.conf"
)
as
f
:
if
os
.
path
.
exists
(
nsd_conf_file
):
with
open
(
nsd_conf_file
)
as
f
:
if
f
.
read
()
==
nsdconf
:
return
False
with
open
(
"/etc/nsd/nsd.conf"
,
"w"
)
as
f
:
# Write out new contents and return True to signal that
# configuration changed.
with
open
(
nsd_conf_file
,
"w"
)
as
f
:
f
.
write
(
nsdconf
)
return
True
########################################################################
...
...
setup/dns.sh
View file @
8886c9b6
...
...
@@ -22,6 +22,28 @@ apt_install nsd ldnsutils openssh-client
mkdir
-p
/var/run/nsd
cat
>
/etc/nsd/nsd.conf
<<
EOF
;
# No not edit. Overwritten by Mail-in-a-Box setup.
server:
hide-version: yes
# identify the server (CH TXT ID.SERVER entry).
identity: ""
# The directory for zonefile: files.
zonesdir: "/etc/nsd/zones"
EOF
# Since we have bind9 listening on localhost for locally-generated
# DNS queries that require a recursive nameserver, and the system
# might have other network interfaces for e.g. tunnelling, we have
# to be specific about the network interfaces that nsd binds to.
for
ip
in
$PRIVATE_IP
$PRIVATE_IPV6
;
do
echo
" ip-address:
$ip
"
>>
/etc/nsd/nsd.conf
;
done
echo
"include: /etc/nsd/zones.conf"
>>
/etc/nsd/nsd.conf
;
# Create DNSSEC signing keys.
mkdir
-p
"
$STORAGE_ROOT
/dns/dnssec"
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment