From 8c4610ee9c13b338acde1d42406dca8d97f6c193 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 25 Nov 2016 08:40:47 +0100 Subject: Renaming too generic internal getopt variables to avoid possible collisions in the future. Signed-off-by: Daniel Baumann --- lib/container/stop | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/container/stop') diff --git a/lib/container/stop b/lib/container/stop index ec24d51..3327025 100755 --- a/lib/container/stop +++ b/lib/container/stop @@ -27,10 +27,10 @@ CLEAN="false" Parameters () { - LONG_OPTIONS="name:,force,clean," - OPTIONS="n:,f," + GETOPT_LONGOPTIONS="name:,force,clean," + GETOPT_OPTIONS="n:,f," - 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 -- cgit v1.2.3