/install/configure -- Start DNS server explicitly
This commit is contained in:
parent
daae040f9c
commit
5abe5af707
12
control.go
12
control.go
|
@ -767,12 +767,12 @@ func handleInstallConfigure(w http.ResponseWriter, r *http.Request) {
|
||||||
// validate that hosts and ports are bindable
|
// validate that hosts and ports are bindable
|
||||||
|
|
||||||
if !checkPortAvailable(newSettings.Web.IP, newSettings.Web.Port) {
|
if !checkPortAvailable(newSettings.Web.IP, newSettings.Web.Port) {
|
||||||
httpError(w, http.StatusBadRequest, "Impossible to listen on IP:port %s:%d", newSettings.Web.IP, newSettings.Web.Port)
|
httpError(w, http.StatusBadRequest, "Impossible to listen on IP:port %s", net.JoinHostPort(newSettings.Web.IP, strconv.Itoa(newSettings.Web.Port)))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if !checkPacketPortAvailable(newSettings.DNS.IP, newSettings.DNS.Port) {
|
if !checkPacketPortAvailable(newSettings.DNS.IP, newSettings.DNS.Port) {
|
||||||
httpError(w, http.StatusBadRequest, "Impossible to listen on IP:port %s:%d", newSettings.DNS.IP, newSettings.DNS.Port)
|
httpError(w, http.StatusBadRequest, "Impossible to listen on IP:port %s", net.JoinHostPort(newSettings.DNS.IP, strconv.Itoa(newSettings.DNS.Port)))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -784,6 +784,14 @@ func handleInstallConfigure(w http.ResponseWriter, r *http.Request) {
|
||||||
config.AuthName = newSettings.Username
|
config.AuthName = newSettings.Username
|
||||||
config.AuthPass = newSettings.Password
|
config.AuthPass = newSettings.Password
|
||||||
|
|
||||||
|
if config.DNS.Port != 0 {
|
||||||
|
err = startDNSServer()
|
||||||
|
if err != nil {
|
||||||
|
httpError(w, http.StatusInternalServerError, "Couldn't start DNS server: %s", err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
httpUpdateConfigReloadDNSReturnOK(w, r)
|
httpUpdateConfigReloadDNSReturnOK(w, r)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue