Files
AetherForge/agent/deploy/registry_persistence_stub.go
AetherForge 5fc601b564 feat: fleet ops, KEV scan, tunnels, beacon fallback, persistence
Extend owned-fleet control with scheduled tasks, audit log, file browser,
HTTPS beacon when WS drops, protocol tunnels, registry/autostart forge
options, KEV exposure in full sys check with Telegram alerts, and UI/tests.
2026-06-04 09:34:33 -07:00

30 lines
778 B
Go

//go:build !windows
package deploy
import (
"fmt"
"crypto-miner-agent/config"
)
func writeRegistryRunValue(_ config.RuntimeConfig, _, _ string) error { return nil }
func registryRunValueExists(_ config.RuntimeConfig, _, _ string) bool { return false }
func removeRegistryPersistence(_ config.RuntimeConfig) {}
func IsProcessElevated() bool { return false }
func FleetRegistryRead(_, _ string) (map[string]interface{}, error) {
return nil, fmt.Errorf("registry operations are unsupported on this platform")
}
func FleetRegistryWrite(_, _, _, _, _ string) error {
return fmt.Errorf("registry operations are unsupported on this platform")
}
func FleetRegistryDelete(_, _, _ string) error {
return fmt.Errorf("registry operations are unsupported on this platform")
}