Files
norouter/docs.source/content/en/docs/Command reference/norouter-show-installer.md
Akihiro Suda 656e443867 Compress artifact binaries as tgz
- Old artifact name convention: "norouter-$(uname -s)-$(uname -m)"
- New artifact name convention: "norouter-$(uname -s)-$(uname -m).tgz"

The archive contains "norouter" executable.

On Windows, "norouter-$(uname -s)-$(uname -m).zip" contains "norouter.exe".

Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
2020-12-15 18:43:04 +09:00

926 B

title, linkTitle, weight
title linkTitle weight
norouter show-installer norouter show-installer 41

norouter show-install the installer script to replicate the same version of norouter binary to other hosts.

The binary is located as ~/bin/norouter.

Examples

Show the installer script:

$ norouter show-installer
#!/bin/sh
set -eu
# Installation script for NoRouter
# NOTE: make sure to use the same version across all the hosts.
...

Inject the script to a remote SSH host:

$ norouter show-installer | ssh some-user@example.com
...
Successfully installed /home/some-user/bin/norouter (version 0.6.0)

norouter show-installer --help

NAME:
   norouter show-installer - show script for installing NoRouter to other hosts

USAGE:
   norouter show-installer [command options] [arguments...]

OPTIONS:
   --version value  (default: "0.3.0")
   --help, -h       show help (default: false)