mirror of
https://github.com/rancher/os.git
synced 2025-06-22 04:57:04 +00:00
9 lines
169 B
Bash
Executable File
9 lines
169 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
cd $(dirname $0)/..
|
|
|
|
chmod 0600 ./assets/rancher.key
|
|
|
|
exec ssh -p 2222 -F ./assets/scripts_ssh_config -i ./assets/rancher.key rancher@localhost "$@"
|