rmmagent/agent/install_unix.go

59 lines
1.1 KiB
Go
Raw Normal View History

2022-06-22 20:20:19 +00:00
//go:build !windows
2022-06-22 20:03:45 +00:00
// +build !windows
2022-03-19 18:55:43 +00:00
/*
Copyright 2022 AmidaWare LLC.
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 (
"log"
2022-06-17 05:14:44 +00:00
2022-03-19 18:55:43 +00:00
"github.com/spf13/viper"
)
2022-06-17 05:14:44 +00:00
const (
etcConfig = "/etc/tacticalagent"
)
2022-03-19 18:55:43 +00:00
func (a *Agent) checkExistingAndRemove(silent bool) {}
func (a *Agent) installerMsg(msg, alert string, silent bool) {
if alert == "error" {
a.Logger.Fatalln(msg)
} else {
a.Logger.Info(msg)
}
}
func createAgentConfig(baseurl, agentid, apiurl, token, agentpk, cert, proxy, meshdir string) {
viper.SetConfigType("json")
viper.Set("baseurl", baseurl)
viper.Set("agentid", agentid)
viper.Set("apiurl", apiurl)
viper.Set("token", token)
viper.Set("agentpk", agentpk)
viper.Set("cert", cert)
viper.Set("proxy", proxy)
viper.Set("meshdir", meshdir)
viper.SetConfigPermissions(0660)
2022-06-17 05:14:44 +00:00
err := viper.SafeWriteConfigAs(etcConfig)
2022-03-19 18:55:43 +00:00
if err != nil {
log.Fatalln("createAgentConfig", err)
}
}
func DisableSleepHibernate() {}
func EnablePing() {}
func EnableRDP() {}