Skip to content

Commit

Permalink
Modified install_ctrd.sh to support Debian 12 (#314)
Browse files Browse the repository at this point in the history
[#313] Install containerd script fails due to it not supporting newest Debian version

 - Added "bookworm" version to install_ctrd.sh

Signed-off-by: Daniel Milchev [email protected]
  • Loading branch information
daniel-milchev authored Jan 19, 2024
1 parent 135f328 commit 249d300
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions quickstart/install_ctrd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ get_distribution_version() {
debian|raspbian)
dist_version="$(sed 's/\/.*//' /etc/debian_version | sed 's/\..*//')"
case "$dist_version" in
12)
dist_version="bookworm"
;;
11)
dist_version="bullseye"
;;
Expand Down

0 comments on commit 249d300

Please sign in to comment.