Skip to content

Commit 663fcd4

Browse files
authored
feature: add support for debian 13 (#11)
* feature: add support for debian 13 * docs: update code example to latest releases
1 parent 00460a4 commit 663fcd4

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ image-update -d centos -r 9
8787
```
8888

8989
```bash
90-
image-update -d debian -r 12
90+
image-update -d debian -r 13
9191
```
9292

9393
```bash

scripts/image-update

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -171,11 +171,10 @@ function set_image_values() {
171171
shasum_algorithm="512"
172172
;;
173173
trixie | 13)
174-
err "Debian 13 'Trixie' is not available"
175-
# file_name="debian-13-generic-amd64.qcow2"
176-
# remote_url= "https://cloud.debian.org/images/cloud/trixie/latest/debian-13-generic-amd64.qcow2"
177-
# remote_shasum_url="https://cloud.debian.org/images/cloud/trixie/latest/SHA512SUMS"
178-
# shasum_algorithm="512"
174+
file_name="debian-13-generic-amd64.qcow2"
175+
remote_url="https://cloud.debian.org/images/cloud/trixie/latest/debian-13-generic-amd64.qcow2"
176+
remote_shasum_url="https://cloud.debian.org/images/cloud/trixie/latest/SHA512SUMS"
177+
shasum_algorithm="512"
179178
;;
180179
*)
181180
err "Unknown distro, only works for Debian 10-12"

0 commit comments

Comments
 (0)