diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-05-30 19:50:48 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-30 19:50:48 +0800 |
commit | 8df24760d74176cb01559e581b140e52b18cdc62 (patch) | |
tree | 026364f131d03de4e1e96a73d32547bc14abe2d6 /cmd/puppeth/module_node.go | |
parent | 71814bf6c4382e2538b25653e2b41f4e76c56d0d (diff) | |
parent | ec1700600a96e493dd0fac2a182dc191eaf227a0 (diff) | |
download | dexon-8df24760d74176cb01559e581b140e52b18cdc62.tar dexon-8df24760d74176cb01559e581b140e52b18cdc62.tar.gz dexon-8df24760d74176cb01559e581b140e52b18cdc62.tar.bz2 dexon-8df24760d74176cb01559e581b140e52b18cdc62.tar.lz dexon-8df24760d74176cb01559e581b140e52b18cdc62.tar.xz dexon-8df24760d74176cb01559e581b140e52b18cdc62.tar.zst dexon-8df24760d74176cb01559e581b140e52b18cdc62.zip |
Merge pull request #14553 from karalabe/puppeth-key-check
cmd/puppeth: fix improper key validation for remotes
Diffstat (limited to 'cmd/puppeth/module_node.go')
-rw-r--r-- | cmd/puppeth/module_node.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/puppeth/module_node.go b/cmd/puppeth/module_node.go index 6372f60d2..ce1d34135 100644 --- a/cmd/puppeth/module_node.go +++ b/cmd/puppeth/module_node.go @@ -135,7 +135,7 @@ func deployNode(client *sshClient, network string, bootv4, bootv5 []string, conf } defer client.Run("rm -rf " + workdir) - // Build and deploy the bootnode service + // Build and deploy the boot or seal node service return nil, client.Stream(fmt.Sprintf("cd %s && docker-compose -p %s up -d --build", workdir, network)) } |