From e4b9ca6c3432697f2ac03cec7ba078b411d6b4c5 Mon Sep 17 00:00:00 2001 From: Randall Winkhart Date: Wed, 15 May 2024 14:58:21 -0400 Subject: [PATCH] Implement initial SSH data retrieval --- src/cli/init.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/init.go b/src/cli/init.go index 0c3852d..f08ad94 100644 --- a/src/cli/init.go +++ b/src/cli/init.go @@ -33,7 +33,7 @@ func TempInitCli() { // client device ID deviceIDPrefix, _ := os.Hostname() deviceIDSuffix := backend.StringGen(rand.Intn(48)+48, true, 0.2) - deviceID := deviceIDPrefix + "-" + deviceIDSuffix // TODO do not save in config file, encrypt in config directory + deviceID := deviceIDPrefix + "-" + deviceIDSuffix // necessary SSH info sshUser := input("Remote SSH username:")