chore: fix runssh to use -id flag and ssh defaults in main
This commit is contained in:
parent
4bf4f0252c
commit
d7918cbcdc
@ -53,7 +53,7 @@ Short version, can be interpreted as:
|
|||||||
|
|
||||||
## Download Release binary
|
## Download Release binary
|
||||||
|
|
||||||
1 - Copy attachment url from [releases page](https://rlung.librecloud.online/LibreCloud/Upclapi/releases)
|
1 - Copy <u>attachment url</u> from [releases page](https://rlung.librecloud.online/LibreCloud/Upclapi/releases)
|
||||||
|
|
||||||
2 - Use this **shell** command changing <u>attachment URL</u>:
|
2 - Use this **shell** command changing <u>attachment URL</u>:
|
||||||
|
|
||||||
|
1
main.go
1
main.go
@ -23,6 +23,7 @@ const SEPARATOR = "::"
|
|||||||
const DATA_CFG = "datacfg.yaml"
|
const DATA_CFG = "datacfg.yaml"
|
||||||
const DFLT_COMMAND= "infoserver"
|
const DFLT_COMMAND= "infoserver"
|
||||||
const SSH_KEY_PATH = ".sshkeys"
|
const SSH_KEY_PATH = ".sshkeys"
|
||||||
|
const DFLT_SSH_USER = "kloudsadm"
|
||||||
|
|
||||||
const MONTH_HOURS = 672
|
const MONTH_HOURS = 672
|
||||||
|
|
||||||
|
35
run.go
35
run.go
@ -6,6 +6,7 @@ import (
|
|||||||
"log"
|
"log"
|
||||||
"os"
|
"os"
|
||||||
"os/exec"
|
"os/exec"
|
||||||
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/joho/godotenv"
|
"github.com/joho/godotenv"
|
||||||
@ -17,6 +18,21 @@ import (
|
|||||||
"github.com/UpCloudLtd/upcloud-go-api/upcloud/service"
|
"github.com/UpCloudLtd/upcloud-go-api/upcloud/service"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
func defaultSSHAccess(host string) SSHAccess {
|
||||||
|
sshaccess := SSHAccess{Host: host}
|
||||||
|
var err error
|
||||||
|
sshaccess.Port, err = strconv.Atoi(os.Getenv("SSH_PORT"))
|
||||||
|
if err != nil {
|
||||||
|
sshaccess.Port = 22
|
||||||
|
}
|
||||||
|
sshaccess.User = os.Getenv("SSH_USER")
|
||||||
|
if len(sshaccess.User) == 0 {
|
||||||
|
sshaccess.User = DFLT_SSH_USER
|
||||||
|
}
|
||||||
|
sshaccess.Password = ""
|
||||||
|
sshaccess.KeyPath = ""
|
||||||
|
return sshaccess
|
||||||
|
}
|
||||||
func cmdexec(command string, args []string) (string, error) {
|
func cmdexec(command string, args []string) (string, error) {
|
||||||
cmd := &exec.Cmd {
|
cmd := &exec.Cmd {
|
||||||
Path: command,
|
Path: command,
|
||||||
@ -197,12 +213,21 @@ func run() int {
|
|||||||
fmt.Fprintln(os.Stderr, "Unable to run ssh command: ", runFlags.command)
|
fmt.Fprintln(os.Stderr, "Unable to run ssh command: ", runFlags.command)
|
||||||
return 99
|
return 99
|
||||||
}
|
}
|
||||||
datacfg,err := loadDataConfig(runFlags)
|
if len(runFlags.id) == 0 {
|
||||||
if err != nil {
|
datacfg,err := loadDataConfig(runFlags)
|
||||||
fmt.Fprintln(os.Stderr, "Unable to run ssh command: ", runFlags.command)
|
if err != nil {
|
||||||
return 99
|
fmt.Fprintln(os.Stderr, "Unable to run ssh command: ", runFlags.command)
|
||||||
|
return 99
|
||||||
|
}
|
||||||
|
onServers(s,"runssh",runFlags,datacfg)
|
||||||
|
} else {
|
||||||
|
sshAccess := defaultSSHAccess(runFlags.id)
|
||||||
|
output, err := runSSH(runFlags, sshAccess, runFlags.runCmd)
|
||||||
|
if err != nil {
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
|
fmt.Println(string(output))
|
||||||
}
|
}
|
||||||
onServers(s,"runssh",runFlags,datacfg)
|
|
||||||
case "runcmd":
|
case "runcmd":
|
||||||
if len(runFlags.runCmd) == 0 {
|
if len(runFlags.runCmd) == 0 {
|
||||||
fmt.Fprintln(os.Stderr, "Unable to run command: ", runFlags.command)
|
fmt.Fprintln(os.Stderr, "Unable to run command: ", runFlags.command)
|
||||||
|
Loading…
Reference in New Issue
Block a user