mirror of
https://github.com/safing/portmaster
synced 2025-04-23 04:19:10 +00:00
44 lines
1 KiB
Go
44 lines
1 KiB
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"runtime"
|
|
|
|
"github.com/safing/portbase/api"
|
|
"github.com/safing/portbase/info"
|
|
"github.com/safing/portbase/metrics"
|
|
"github.com/safing/portbase/modules"
|
|
"github.com/safing/portbase/run"
|
|
"github.com/safing/portmaster/service/updates"
|
|
"github.com/safing/portmaster/service/updates/helper"
|
|
"github.com/safing/portmaster/spn/captain"
|
|
"github.com/safing/portmaster/spn/conf"
|
|
"github.com/safing/portmaster/spn/sluice"
|
|
)
|
|
|
|
func main() {
|
|
info.Set("SPN Observation Hub", "0.7.1", "AGPLv3", true)
|
|
|
|
// Configure metrics.
|
|
_ = metrics.SetNamespace("observer")
|
|
|
|
// Configure user agent.
|
|
updates.UserAgent = fmt.Sprintf("SPN Observation Hub (%s %s)", runtime.GOOS, runtime.GOARCH)
|
|
helper.IntelOnly()
|
|
|
|
// Configure SPN mode.
|
|
conf.EnableClient(true)
|
|
conf.EnablePublicHub(false)
|
|
captain.DisableAccount = true
|
|
|
|
// Disable unneeded listeners.
|
|
sluice.EnableListener = false
|
|
api.EnableServer = false
|
|
|
|
// Disable module management, as we want to start all modules.
|
|
modules.DisableModuleManagement()
|
|
|
|
// Start.
|
|
os.Exit(run.Run())
|
|
}
|