/usr/bin/onegate is in opennebula-context 4.14.0-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 | #!/bin/bash
ENV_FILE=/tmp/one_env
if [ -f $ENV_FILE ]; then
. $ENV_FILE
fi
DIR=$(dirname $(readlink -f $0))
ruby $DIR/onegate.rb $*
|