rmmagent/agent/patching/patching_unix.go
2022-06-22 15:40:42 -07:00

12 lines
218 B
Go

//go:build !windows
// +build !windows
package patching
func PatchMgmnt(enable bool) error { return nil }
func GetUpdates()(PackageList, error) {
return PackageList{}, nil
}
func InstallUpdates(guids []string) {}