- New option: `HEALTH_ICMP_TARGET_IP` defaults to `0.0.0.0` meaning use the VPN server public IP address. - Options removed: `HEALTH_VPN_INITIAL_DURATION` and `HEALTH_VPN_ADDITIONAL_DURATION` - times and retries are handpicked and hardcoded. - Less aggressive checks and less false positive detection
28 lines
917 B
Go
28 lines
917 B
Go
package settings
|
|
|
|
import (
|
|
"slices"
|
|
|
|
"github.com/qdm12/gosettings/reader"
|
|
"golang.org/x/exp/maps"
|
|
)
|
|
|
|
func readObsolete(r *reader.Reader) (warnings []string) {
|
|
keyToMessage := map[string]string{
|
|
"DOT_VERBOSITY": "DOT_VERBOSITY is obsolete, use LOG_LEVEL instead.",
|
|
"DOT_VERBOSITY_DETAILS": "DOT_VERBOSITY_DETAILS is obsolete because it was specific to Unbound.",
|
|
"DOT_VALIDATION_LOGLEVEL": "DOT_VALIDATION_LOGLEVEL is obsolete because DNSSEC validation is not implemented.",
|
|
"HEALTH_VPN_DURATION_INITIAL": "HEALTH_VPN_DURATION_INITIAL is obsolete",
|
|
"HEALTH_VPN_DURATION_ADDITION": "HEALTH_VPN_DURATION_ADDITION is obsolete",
|
|
}
|
|
sortedKeys := maps.Keys(keyToMessage)
|
|
slices.Sort(sortedKeys)
|
|
warnings = make([]string, 0, len(keyToMessage))
|
|
for _, key := range sortedKeys {
|
|
if r.Get(key) != nil {
|
|
warnings = append(warnings, keyToMessage[key])
|
|
}
|
|
}
|
|
return warnings
|
|
}
|