diff options
author | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2022-07-21 17:51:44 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2022-07-21 17:51:50 +0000 |
commit | d4efe2785b9975a976391fe0ac51a01a99559621 (patch) | |
tree | 046801fae5007a031a956ecfe8dff62c6309b3e2 | |
parent | Handling multiple IP addresses in container info command the same way for sto... (diff) | |
download | compute-tools-d4efe2785b9975a976391fe0ac51a01a99559621.tar.xz compute-tools-d4efe2785b9975a976391fe0ac51a01a99559621.zip |
Adding lazy detection in container info command for Debian 12 (booworm).
Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
-rwxr-xr-x | libexec/container/info | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libexec/container/info b/libexec/container/info index 68666bb..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" ;; |