mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
11 lines
184 B
Bash
Executable File
11 lines
184 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# @VERSION@
|
|
|
|
cert="/root/.ssh/id_rsa.cloud"
|
|
domr=$1
|
|
shift
|
|
ssh -p 3922 -o StrictHostKeyChecking=no -i $cert root@$domr "/opt/cloud/bin/vpn_l2tp.sh $*" >/dev/null
|
|
|
|
exit $?
|