From cf80d78328fae684261ca19506455b281b9dc619 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Thu, 21 Jul 2022 20:00:28 +0200 Subject: Adding upstream version 20220721. Signed-off-by: Daniel Baumann --- libexec/container/info | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'libexec') diff --git a/libexec/container/info b/libexec/container/info index 699a253..0888cc8 100755 --- a/libexec/container/info +++ b/libexec/container/info @@ -167,6 +167,10 @@ case "${VERSION_BASH}" in OS="Debian 11 (bullseye)" ;; + 5.2*) + OS="Debian 12 (bookworm)" + ;; + *) OS="n/a" ;; @@ -174,16 +178,16 @@ esac case "${STATUS}" in started) - IP="$(cnt run -n ${NAME} -- hostname -I | awk '{ print $1 }')" + IP="$(cnt run -n ${NAME} -- hostname -I)" ;; *) - if ls "${MACHINES}/${CONTAINER}/etc/systemd/network"/*.network > /dev/null 2>&1 + if ls "${MACHINES}/${NAME}/etc/systemd/network"/*.network > /dev/null 2>&1 then - IP="$(awk -FAddress= '/^Address/ { print $2 }' ${MACHINES}/${CONTAINER}/etc/systemd/network/*.network | head -n1)" - elif [ -e "${MACHINES}/${CONTAINER}/etc/network/interfaces" ] + IP="$(awk -FAddress= '/^Address/ { printf "%s ", $2 }' ${MACHINES}/${NAME}/etc/systemd/network/*.network)" + elif [ -e "${MACHINES}/${NAME}/etc/network/interfaces" ] then - IP="$(awk '/address/ { print $2 }' ${MACHINES}/${CONTAINER}/etc/network/interfaces | head -n1)" + IP="$(awk '/address/ { printf "%s ", $2 }' ${MACHINES}/${NAME}/etc/network/interfaces)" fi IP="${IP:-n/a}" -- cgit v1.2.3