diff options
author | Simon Spöhel <simon.spoehel@open-infrastructure.net> | 2017-07-09 15:01:36 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2017-07-21 17:41:03 +0000 |
commit | 592a80fa9483a6e61a99572155776e12eac0a1a5 (patch) | |
tree | d64e40ddb62e4253b5acb6be433a8b45e641e830 /lib/container/start | |
parent | Merging sections for container-tools in nspawn file. (diff) | |
download | compute-tools-592a80fa9483a6e61a99572155776e12eac0a1a5.tar.xz compute-tools-592a80fa9483a6e61a99572155776e12eac0a1a5.zip |
Fixing typo in 'bandwidth'.
Diffstat (limited to '')
-rwxr-xr-x | lib/container/start | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/container/start b/lib/container/start index da44dec..a81a98f 100755 --- a/lib/container/start +++ b/lib/container/start @@ -392,11 +392,11 @@ EOF SET_PROPERTY="true" fi - BLOCK_IO_READ_BANDWITH="$(crudini --get ${CONFIG}/${NAME}.nspawn ContainerTools BlockIOReadBandwith)" + BLOCK_IO_READ_BANDWIDTH="$(crudini --get ${CONFIG}/${NAME}.nspawn ContainerTools BlockIOReadBandwidth)" - if [ -n "${BLOCK_IO_READ_BANDWITH}" ] + if [ -n "${BLOCK_IO_READ_BANDWIDTH}" ] then - BLOCK_IO_READ_BANDWITH="BlockIOReadBandwith=${BLOCK_IO_READ_BANDWITH}" + BLOCK_IO_READ_BANDWIDTH="BlockIOReadBandwidth=${BLOCK_IO_READ_BANDWIDTH}" SET_PROPERTY="true" fi @@ -408,11 +408,11 @@ EOF SET_PROPERTY="true" fi - BLOCK_IO_WRITE_BANDWITH="$(crudini --get ${CONFIG}/${NAME}.nspawn ContainerTools BlockIOWriteBandwith)" + BLOCK_IO_WRITE_BANDWIDTH="$(crudini --get ${CONFIG}/${NAME}.nspawn ContainerTools BlockIOWriteBandwidth)" - if [ -n "${BLOCK_IO_WRITE_BANDWITH}" ] + if [ -n "${BLOCK_IO_WRITE_BANDWIDTH}" ] then - BLOCK_IO_WRITE_BANDWITH="BlockIOWriteBandwith=${BLOCK_IO_WRITE_BANDWITH}" + BLOCK_IO_WRITE_BANDWIDTH="BlockIOWriteBandwidth=${BLOCK_IO_WRITE_BANDWIDTH}" SET_PROPERTY="true" fi @@ -461,7 +461,7 @@ case "${START}" in true) case "${SET_PROPERTY}" in true) - systemctl --runtime set-property ${NAME} ${BLOCK_IO_DEVICE_WEIGHT} ${BLOCK_IO_READ_BANDWITH} ${BLOCK_IO_WEIGHT} ${BLOCK_IO_WRITE_BANDWITH} ${CPU_QUOTA} ${CPU_SHARES} ${MEMORY_LIMIT} ${TASKS_MAX} + systemctl --runtime set-property ${NAME} ${BLOCK_IO_DEVICE_WEIGHT} ${BLOCK_IO_READ_BANDWIDTH} ${BLOCK_IO_WEIGHT} ${BLOCK_IO_WRITE_BANDWIDTH} ${CPU_QUOTA} ${CPU_SHARES} ${MEMORY_LIMIT} ${TASKS_MAX} ;; esac ;; |