#!/bin/sh

export SERVER_NAME=$(basename $(dirname $(realpath $0)))

main() {
    cmd=$1; shift
    tequila "$cmd" "$@" "$SERVER_NAME"
}

main $@