5 lines
81 B
Bash
Executable file
5 lines
81 B
Bash
Executable file
#!/usr/bin/env bash
|
|
HOST="$1"
|
|
shift 1
|
|
|
|
ssh -i ~/.ssh/puppet-push root@$HOST "$@"
|