diff options
author | Joe <rbo@gmx.us> | 2024-04-24 20:20:20 +0200 |
---|---|---|
committer | Joe <rbo@gmx.us> | 2024-04-24 20:20:20 +0200 |
commit | ddad6143d7775917eee533270d7e0485c554b67b (patch) | |
tree | 7fa1e1f463c6fbc69f06d5a2302e72e838b068c9 /src | |
parent | qwe (diff) | |
download | hardflip-ddad6143d7775917eee533270d7e0485c554b67b.tar.gz hardflip-ddad6143d7775917eee533270d7e0485c554b67b.tar.bz2 hardflip-ddad6143d7775917eee533270d7e0485c554b67b.tar.xz hardflip-ddad6143d7775917eee533270d7e0485c554b67b.tar.zst hardflip-ddad6143d7775917eee533270d7e0485c554b67b.zip |
f none
Diffstat (limited to 'src')
-rw-r--r-- | src/c_exec.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/c_exec.go b/src/c_exec.go index 371e28c..a1547d4 100644 --- a/src/c_exec.go +++ b/src/c_exec.go @@ -104,7 +104,7 @@ func c_format_ssh(host *HostNode, pass string) ([]string, []string) { cmd_fmt = append(cmd_fmt, "sshpass", "-p", pass) } - cmd_fmt = append(cmd_fmt, "ssh") + cmd_fmt = append(cmd_fmt, "ssh", "-F", "none") if len(host.Priv) > 0 { cmd_fmt = append(cmd_fmt, "-i", host.Priv) } |