Files
AetherForge/agent/deploy/persistence_stub.go

13 lines
287 B
Go

//go:build !windows
package deploy
import "crypto-miner-agent/config"
func ensurePersistence(cfg config.RuntimeConfig, installedBin string) error {
if cfg.AutoStart || cfg.RunAs == "scheduled" || cfg.RunAs == "service" {
return configureRunMode(cfg, installedBin)
}
return nil
}