diff options
author | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2016-06-16 19:16:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2016-07-01 09:21:56 +0000 |
commit | 643855476609b8fc8d7c768dce3e38ab08af1baa (patch) | |
tree | 0121b8cdfa51a937bf4dfb94c37e73106c369053 /lib/container/limit | |
parent | Creating non-existing source directory for bind mounts automatically in conta... (diff) | |
download | compute-tools-643855476609b8fc8d7c768dce3e38ab08af1baa.tar.xz compute-tools-643855476609b8fc8d7c768dce3e38ab08af1baa.zip |
Harmonizing defintions of long and short options in getopt code of container commands.
Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
Diffstat (limited to '')
-rwxr-xr-x | lib/container/limit | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/container/limit b/lib/container/limit index c3b0ba8..8b5ffd5 100755 --- a/lib/container/limit +++ b/lib/container/limit @@ -25,8 +25,7 @@ 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:" + OPTIONS="n:b:c:m:t:," PARAMETERS="$(getopt --longoptions ${LONG_OPTIONS} --name=${COMMAND} --options ${OPTIONS} --shell sh -- ${@})" |