diff options
Diffstat (limited to 'lib/container/list')
-rwxr-xr-x | lib/container/list | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/container/list b/lib/container/list index 04e9f0f..3c23c24 100755 --- a/lib/container/list +++ b/lib/container/list @@ -25,10 +25,10 @@ MACHINES="/var/lib/machines" Parameters () { - LONG_OPTIONS="all,format:,host:,other,started,stopped," - OPTIONS="a,f:,h:,o,s,t," + GETOPT_LONGOPTIONS="all,format:,host:,other,started,stopped," + GETOPT_OPTIONS="a,f:,h:,o,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 |