From 795f0c9d4e0bd3f70730ad80a1c7fca94184c996 Mon Sep 17 00:00:00 2001 From: Katharina Drexel Date: Thu, 8 Oct 2020 17:12:27 +0200 Subject: Adding awk optimizations in configuration file handling. Signed-off-by: Katharina Drexel --- lib/container/remove | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/container/remove') 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 -- cgit v1.2.3