mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-24 14:05:45 +03:00
32 lines
700 B
Go
32 lines
700 B
Go
//go:build darwin
|
|
|
|
package aghos
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
|
|
"github.com/AdguardTeam/golibs/log"
|
|
)
|
|
|
|
// preCheckActionStart performs the service start action pre-check. It warns
|
|
// user that the service should be installed into Applications directory.
|
|
func preCheckActionStart() (err error) {
|
|
exe, err := os.Executable()
|
|
if err != nil {
|
|
return fmt.Errorf("getting executable path: %v", err)
|
|
}
|
|
|
|
exe, err = filepath.EvalSymlinks(exe)
|
|
if err != nil {
|
|
return fmt.Errorf("evaluating executable symlinks: %v", err)
|
|
}
|
|
|
|
if !strings.HasPrefix(exe, "/Applications/") {
|
|
log.Info("warning: service must be started from within the /Applications directory")
|
|
}
|
|
|
|
return err
|
|
}
|