diff options
author | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2016-11-25 07:40:47 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2016-11-25 10:21:12 +0000 |
commit | 8c4610ee9c13b338acde1d42406dca8d97f6c193 (patch) | |
tree | d7cb8cbda8af738e06e6a1b77a4c98edbc82dad9 /lib/container/limit | |
parent | Releasing version 20161122. (diff) | |
download | compute-tools-8c4610ee9c13b338acde1d42406dca8d97f6c193.tar.xz compute-tools-8c4610ee9c13b338acde1d42406dca8d97f6c193.zip |
Renaming too generic internal getopt variables to avoid possible collisions in the future.
Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
Diffstat (limited to '')
-rwxr-xr-x | lib/container/limit | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/container/limit b/lib/container/limit index 8b5ffd5..a9882c9 100755 --- a/lib/container/limit +++ b/lib/container/limit @@ -24,10 +24,10 @@ MACHINES="/var/lib/machines" Parameters () { - LONG_OPTIONS="name:,blockio-device-weight:,blockio-read-bandwith:,blockio-weight:,blockio-write-bandwith:,cpu-quota:,cpu-shares:,memory-limit:,tasks-max:," - OPTIONS="n:b:c:m:t:," + GETOPT_LONGOPTIONS="name:,blockio-device-weight:,blockio-read-bandwith:,blockio-weight:,blockio-write-bandwith:,cpu-quota:,cpu-shares:,memory-limit:,tasks-max:," + GETOPT_OPTIONS="n:b:c:m: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 |