ventura mesh fix
This commit is contained in:
parent
e51e4ccf83
commit
8e6858778b
5 changed files with 137 additions and 0 deletions
24
agent/embed_darwin.go
Normal file
24
agent/embed_darwin.go
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
//go:build darwin
|
||||
// +build darwin
|
||||
|
||||
/*
|
||||
Copyright 2023 Amidaware Inc.
|
||||
|
||||
Licensed under the Tactical RMM License Version 1.0 (the “License”).
|
||||
You may only use the Licensed Software in accordance with the License.
|
||||
A copy of the License is available at:
|
||||
|
||||
https://license.tacticalrmm.com
|
||||
|
||||
*/
|
||||
|
||||
package agent
|
||||
|
||||
import _ "embed"
|
||||
|
||||
//go:embed scripts/macos_fix_mesh_install.sh
|
||||
var ventura_mesh_fix string
|
||||
|
||||
func (a *Agent) FixVenturaMesh() {
|
||||
a.RunScript(ventura_mesh_fix, "foo", []string{}, 45, false, []string{})
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue