fix(startup): make watchdog task keep agent alive

- Use Task Scheduler XML instead of /TR
- Run -ensure agent in-process, not child
- Add console close and panic protection
- Guard nil event channels after stop
- Add non-Windows stubs for startup/mutex
This commit is contained in:
2026-09-01 23:12:22 +03:00
parent e7982c5487
commit e74f74bc4e
20 changed files with 365 additions and 91 deletions
+11
View File
@@ -0,0 +1,11 @@
//go:build !windows
package startup
func Enabled() bool { return false }
func Enable() error { return nil }
func Disable() error { return nil }
func SyncInstalledPath() error { return nil }