diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2022-07-21 18:00:33 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2022-10-02 12:20:18 +0000 |
commit | 2b89937f3d52b388fadeeaed709dc535d5af9ce7 (patch) | |
tree | fb3558d81a3a7807ccdadde021d38e1ba968fada /libexec/container | |
parent | Releasing debian version 20220704-1. (diff) | |
download | open-infrastructure-compute-tools-2b89937f3d52b388fadeeaed709dc535d5af9ce7.tar.xz open-infrastructure-compute-tools-2b89937f3d52b388fadeeaed709dc535d5af9ce7.zip |
Merging upstream version 20220721.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'libexec/container')
-rwxr-xr-x | libexec/container/info | 14 |
1 files changed, 9 insertions, 5 deletions
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}" |