cmd/cli: do not save static DNS when ctrld is already installed

If ctrld was installed, the DNS setting was changed, we could not
determine the dynamic or static settings before installing ctrld.
This commit is contained in:
Cuong Manh Le
2024-02-20 15:16:24 +07:00
committed by Cuong Manh Le
parent dabbf2037b
commit 906479a15c
2 changed files with 19 additions and 5 deletions
+15 -2
View File
@@ -259,8 +259,11 @@ func initCLI() {
return
}
status, err := s.Status()
isCtrldInstalled := !errors.Is(err, service.ErrNotInstalled)
// If pin code was set, do not allow running start command.
if status, _ := s.Status(); status == service.StatusRunning {
if status == service.StatusRunning {
if err := checkDeactivationPin(s); isCheckDeactivationPinErr(err) {
os.Exit(deactivationPinInvalidExitCode)
}
@@ -276,8 +279,18 @@ func initCLI() {
{func() error { return doGenerateNextDNSConfig(nextdns) }, true},
{func() error { return ensureUninstall(s) }, false},
{func() error {
// If ctrld is installed, we should not save current DNS settings, because:
//
// - The DNS settings was being set by ctrld already.
// - We could not determine the state of DNS settings before installing ctrld.
if isCtrldInstalled {
return nil
}
// Save current DNS so we can restore later.
withEachPhysicalInterfaces("", "save DNS settings", saveCurrentStaticDNS)
withEachPhysicalInterfaces("", "save DNS settings", func(i *net.Interface) error {
return saveCurrentStaticDNS(i)
})
return nil
}, false},
{s.Install, false},