Skip to content
Snippets Groups Projects
manage 156 B
Newer Older
#!/bin/bash

if [ -z "$1" ]
then
    echo "Usage: ./control.sh SERVER-IP"
    exit 1
else
    host=$1
fi

ssh -t "root@${host}" "/oas/bin/control-shell.sh"