ya

command module
v0.0.0-...-0ef6a52 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 10, 2018 License: Apache-2.0 Imports: 1 Imported by: 0

README

ya

CircleCI Build Status Coverage Status Go Report Card Documentation Apache Licensed

Ya runs a command using SSH or copies items using SCP across multiple servers.

Usage

Ya runs a command or copies files or directories,
across multiple servers, using SSH or SCP

Usage:
  ya [command]

Available Commands:
  help        Help about any command
  scp         Copy files to multiple servers
  ssh         Run command acrosss multiple servers

Flags:
  -s, --agentsock string   SSH agent socket file. If using SSH agent (default "/private/tmp/com.apple.launchd.67UG0GmO3V/Listeners")
      --config string      config file (default is $HOME/.ya.yaml)
  -h, --help               help for ya
  -k, --key string         Ssh key to use for authentication, full path (default "/Users/raravena/.ssh/id_rsa")
  -m, --machines strings   Hosts to run command on
  -p, --port int           Ssh port to connect to (default 22)
  -t, --timeout int        Timeout for connection (default 5)
  -a, --useagent           Use agent for authentication
  -u, --user string        User to run the command as (default "raravena")
  -v, --verbose            Set verbose output

Use "ya [command] --help" for more information about a command.

Config

Sample ~/.ya.yaml

ya:
  user: ubuntu
  key: /Users/username/.ssh/id_rsa
  useagent: true
  machines:
    - 172.1.1.1
    - 172.1.1.2
    - 172.1.1.3
    - 172.1.1.4
    - 172.1.1.5

SSH Specific

  ssh:
    command: sudo rm -f /var/log/syslog.*

SCP Specific

  scp:
    source: /Users/raravena/tmp2
    destination: /root/tmpboguss
    recursive: true

SSH Examples

Makes /tmp/tmpdir in 17.2.2.2 and 17.2.3.2:

$ ya ssh -c "mkdir /tmp/tmpdir" -m 17.2.2.2,17.2.3.2

Creates /tmp/file file in host1 and host2

$ ya ssh -c "touch /tmp/file" -m host1,host2

Moves a file and creates another one in host1 and host2:

$ ya ssh -c "mv /tmp/file1 /tmp/file2; touch /tmp/file3" -m host1,host2

Runs with default in ~/.sshrunner.yaml

$ ya ssh

SCP Examples

Copies from local /tmp/tmpfile to /tmp/tmpfile2 in 17.2.2.2 and 17.2.3.2:

$ ya scp --src /tmp/tmpfile --dst /tmp/tmpfile2  -m 17.2.2.2,17.2.3.2

Copies /tmp/dir directory under /tmp in host1 and host2 (recursively)

$ ya scp  -r --src /tmp/dir  --dst /tmp host1,host2

Runs with default in ~/.ya.yaml

$ ya scp

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL