#! /bin/sh
#
# Splus LICENSE install
#
# Install new license key(s).
#

extra_args=""

while [ $# -gt 0 ]
do case "$1" in
    -M) LIC_ALIASES="$LIC_ALIASES,$2"; shift;;
    *) extra_args="$extra_args $1";;
esac; shift; done

exec admin -c -r 1 $extra_args $LIC_ALIASES
