diff options
Diffstat (limited to 'lib/container/auto')
-rwxr-xr-x | lib/container/auto | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/container/auto b/lib/container/auto index ac65595..eb23f87 100755 --- a/lib/container/auto +++ b/lib/container/auto @@ -24,10 +24,10 @@ CONFIG="/etc/container-tools/config" Parameters () { - LONG_OPTIONS="start,stop," - OPTIONS="s,t," + GETOPT_LONGOPTIONS="start,stop," + GETOPT_OPTIONS="s,t," - PARAMETERS="$(getopt --longoptions ${LONG_OPTIONS} --name=${COMMAND} --options ${OPTIONS} --shell sh -- ${@})" + PARAMETERS="$(getopt --longoptions ${GETOPT_LONGOPTIONS} --name=${COMMAND} --options ${GETOPT_OPTIONS} --shell sh -- ${@})" if [ "${?}" != "0" ] then |