blob: ec5f0283e67d7face641a7c50c91808fbb63cbb9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
|
#!/bin/bash
# Copyright (c) 2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# void system_depend(void)
#
# Sets up the dependancies for the module
system_depend() {
after interface dhcp
variables dns_servers dns_domain dns_options dns_search dns_sortlist \
ntp_servers nis_domain nis_servers
}
system_dns_extra() {
local iface="$1" ifvar=$( bash_variable "$1" ) out="$2" x sortlist
local -a options
eval options=( \"\$\{dns_options_${ifvar}\[@\]\}\" )
[[ -z ${options} ]] && options=( "${dns_options[@]}" )
for x in "${options[@]}"; do
echo "options ${x}" >> "${out}"
done
eval sortlist=\"\$\{dns_sortlist_${ifvar}\}\"
[[ -z ${sortlist} ]] && sortlist="${dns_sortlist}"
[[ -n ${sortlist} ]] && echo "sortlist ${sortlist}" >> "${out}"
}
system_dns() {
local iface="$1" ifvar=$( bash_variable "$1" ) x domain search
local conffile="${statedir}/${iface}/resolv.conf" tmpfile="${conffile}.$$"
local -a servers
eval servers=( \"\$\{dns_servers_${ifvar}\[@\]\}\" )
[[ -z ${servers} ]] && servers=( "${dns_servers[@]}" )
eval domain=\"\$\{dns_domain_${ifvar}\}\"
[[ -z ${domain} ]] && domain="${dns_domain}"
eval search=\"\$\{dns_search_${ifvar}\}\"
[[ -z ${search} ]] && search="${dns_search}"
[[ -z ${servers} && -z ${domain} && -z ${search} ]] && return 0
echo "# Generated by net-scripts for interface ${iface}" > "${tmpfile}"
chmod 644 "${tmpfile}"
[[ -n ${domain} ]] && echo "domain ${domain}" >> "${tmpfile}"
for x in ${servers[@]}; do
echo "nameserver ${x}" >> "${tmpfile}"
done
[[ -n ${search} ]] && echo "search ${search}" >> "${tmpfile}"
system_dns_extra "${iface}" "${tmpfile}"
mv "${tmpfile}" "${conffile}"
}
system_ntp() {
local iface="$1" ifvar=$( bash_variable "$1" ) x
local conffile="${statedir}/${iface}/ntp.conf" tmpfile="${conffile}.$$"
local -a servers
eval servers=( \"\$\{ntp_servers_${ifvar}\[\@\]\}\" )
[[ -z ${servers} ]] && servers=( "${ntp_servers[@]}" )
[[ -z ${servers} ]] && return 0
echo "# Generated by net-scripts for interface ${iface}" > "${tmpfile}"
chmod 644 "${tmpfile}"
echo "restrict default noquery notrust nomodify" >> "${tmpfile}"
echo "restrict 127.0.0.1" >> "${tmpfile}"
for x in ${servers[@]}; do
echo "restrict ${x} nomodify notrap noquery" >> "${tmpfile}"
echo "server ${x}" >> "${tmpfile}"
done
echo "driftfile /var/lib/ntp/ntp.drift" >> "${tmpfile}"
echo "logfile /var/log/ntp.log" >> "${tmpfile}"
mv "${tmpfile}" "${conffile}"
}
system_nis() {
local iface="$1" ifvar=$( bash_variable "$1" ) domain x
local conffile="${statedir}/${iface}/yp.conf" tmpfile="${conffile}.$$"
local -a servers
eval servers=( \"\$\{nis_servers_${ifvar}\[\@\]\}\" )
[[ -z ${servers} ]] && servers=( "${nis_servers[@]}" )
eval domain=\"\$\{nis_domain_${ifvar}\}\"
[[ -z ${domain} ]] && domain="${nis_domain}"
[[ -z ${servers} && -z ${domain} ]] && return 0
echo "# Generated by net-scripts for interface ${iface}" > "${tmpfile}"
chmod 644 "${tmpfile}"
if [[ -n ${domain} ]]; then
hostname -y "${domain}"
if [[ -n ${servers} ]]; then
for x in ${servers}; do
echo "domain ${domain} server ${x}" >> "${tmpfile}"
done
else
echo "domain ${domain} broadcast" >> "${tmpfile}"
fi
else
for x in ${servers}; do
echo "ypserver ${x}" >> "${tmpfile}"
done
fi
mv "${tmpfile}" "${conffile}"
}
# bool system_post_start(char *iface)
#
# Configures the host system for dns, ntp and nis information
# Always returns 0
system_post_start() {
local iface="$1"
system_dns "${iface}"
system_ntp "${iface}"
system_nis "${iface}"
return 0
}
# vim:ts=4
|