#!/bin/sh
# little wrapper to choose a default port for autossh [21021]

if [ ! $AUTOSSH_PORT ]; then export AUTOSSH_PORT="21021"; fi

exec /usr/lib/autossh/autossh "$@"
