This commit is contained in:
redanthrax 2022-08-19 10:18:45 -07:00
commit e2a1a74599
21 changed files with 338 additions and 579 deletions

View file

@ -25,7 +25,7 @@ import (
)
var (
version = "2.0.4"
version = "2.3.0"
log = logrus.New()
logFile *os.File
)
@ -85,6 +85,8 @@ func main() {
a.Logger.Debugf("%+v\n", a)
switch *mode {
case "getenv":
fmt.Println(os.Getenv(flag.Arg(0)))
case "nixmeshnodeid":
fmt.Print(a.NixMeshNodeID())
case "installsvc":
@ -199,6 +201,6 @@ func installUsage() {
}
func updateUsage() {
u := `Usage: tacticalrmm.exe -m update -updateurl https://example.com/winagent-vX.X.X.exe -inno winagent-vX.X.X.exe -updatever 1.1.1`
u := `Usage: tacticalrmm.exe -m update -updateurl https://example.com/tacticalagent-vX.X.X.exe -inno tacticalagent-vX.X.X.exe -updatever 1.1.1`
fmt.Println(u)
}