From 695bdc8a14d17f16c341b0029f50e9cae85cde75 Mon Sep 17 00:00:00 2001 From: Oliver Gerlich Date: Mon, 1 Jul 2019 17:23:06 +0200 Subject: [PATCH] Update runtime/node_ssh.go: fix format string Co-Authored-By: genofire --- runtime/node_ssh.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/node_ssh.go b/runtime/node_ssh.go index 1dafbfa..c01a51e 100644 --- a/runtime/node_ssh.go +++ b/runtime/node_ssh.go @@ -82,7 +82,7 @@ func (n *Node) SSHUpdate(sshmgmt *ssh.Manager) bool { ssh.Execute(n.Address, client, fmt.Sprintf(` uci set wireless.priv_%s.ssid='offline-%s'; uci commit wireless;`, - n.Hostname)) + radio, n.Hostname)) // runWifi = true <- not needed for offline-ssid } }