diff options
author | Katharina Drexel <katharina.drexel@bfh.ch> | 2020-10-08 15:12:27 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2020-10-30 04:04:17 +0000 |
commit | 795f0c9d4e0bd3f70730ad80a1c7fca94184c996 (patch) | |
tree | 47e29fc239c6b38b7a289b922ce72e6bb7b20923 /lib/container/remove | |
parent | Adding overlay options to debconf script. (diff) | |
download | compute-tools-795f0c9d4e0bd3f70730ad80a1c7fca94184c996.tar.xz compute-tools-795f0c9d4e0bd3f70730ad80a1c7fca94184c996.zip |
Adding awk optimizations in configuration file handling.
Signed-off-by: Katharina Drexel <katharina.drexel@bfh.ch>
Diffstat (limited to 'lib/container/remove')
-rwxr-xr-x | lib/container/remove | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/container/remove b/lib/container/remove index 208de3d..820e45e 100755 --- a/lib/container/remove +++ b/lib/container/remove @@ -145,7 +145,7 @@ then exit 1 fi -STATE="$(machinectl show ${NAME} 2>&1 | awk -F= '/^State=/ { print $2 }')" +STATE="$(machinectl show ${NAME} 2>&1 | awk -FState= '/^State=/ { print $2 }')" case "${STATE}" in running) @@ -207,7 +207,7 @@ done if [ -e "${CONFIG}/${NAME}.conf" ] then # Removing rw bind mounts - BIND="$(awk -F= '/^bind=/ { print $2 }' ${CONFIG}/${NAME}.conf)" + BIND="$(awk -Fbind= '/^bind=/ { print $2 }' ${CONFIG}/${NAME}.conf)" if [ -n "${BIND}" ] then @@ -222,7 +222,7 @@ then fi # Removing ro bind mounts - BIND_RO="$(awk -F= '/^bind-ro=/ { print $2 }' ${CONFIG}/${NAME}.conf)" + BIND_RO="$(awk -Fbind-ro= '/^bind-ro=/ { print $2 }' ${CONFIG}/${NAME}.conf)" if [ -n "${BIND_RO}" ] then |