File tree 4 files changed +23
-11
lines changed
4 files changed +23
-11
lines changed Original file line number Diff line number Diff line change @@ -15,14 +15,18 @@ Currently the following images repositories are supported:
15
15
16
16
### Debian
17
17
18
- - Debian 9: https://cdimage.debian.org/cdimage/openstack/current-9/
19
- - Debian testing: https://cdimage.debian.org/cdimage/openstack/testing/
18
+ - Debian 11: https://cloud.debian.org/images/cloud/bullseye/
19
+ - Debian 12: https://cloud.debian.org/images/cloud/bookworm/
20
+ - Debian testing: https://cloud.debian.org/images/cloud/sid/
20
21
21
22
### Ubuntu
22
23
23
24
- Ubuntu 14.04: https://cloud-images.ubuntu.com/trusty/
24
25
- Ubuntu 16.04: https://cloud-images.ubuntu.com/xenial/
25
26
- Ubuntu 18.04: https://cloud-images.ubuntu.com/bionic/
27
+ - Ubuntu 20.04: https://cloud-images.ubuntu.com/focal/
28
+ - Ubuntu 22.04: https://cloud-images.ubuntu.com/jammy/
29
+ - Ubuntu 24.04: https://cloud-images.ubuntu.com/noble
26
30
27
31
## Installation
28
32
Original file line number Diff line number Diff line change @@ -106,19 +106,19 @@ def _sync_all(self):
106
106
self ._sync_latest ()
107
107
108
108
109
- class Debian10 (Debian ):
110
- debian_release = "buster"
111
- version = "10"
112
- url = "https://repo.ifca.es/debian-cdimage-cloud/%s/latest/" % debian_release
113
-
114
-
115
109
class Debian11 (Debian ):
116
110
debian_release = "bullseye"
117
111
version = "11"
118
- url = "https://repo.ifca.es/debian-cdimage- cloud/%s/latest/" % debian_release
112
+ url = "https://cloud.debian.org/images/ cloud/%s/latest/" % debian_release
119
113
120
114
121
115
class Debian12 (Debian ):
122
116
debian_release = "bookworm"
123
117
version = "12"
124
- url = "https://repo.ifca.es/debian-cdimage-cloud/%s/latest/" % debian_release
118
+ url = "https:///cloud.debian.org/images/cloud/%s/latest/" % debian_release
119
+
120
+
121
+ class DebianTesting (Debian ):
122
+ debian_release = "sid"
123
+ version = "tesging"
124
+ url = "https:///cloud.debian.org/images/cloud/%s/latest/" % debian_release
Original file line number Diff line number Diff line change @@ -136,3 +136,10 @@ class Ubuntu22(Ubuntu):
136
136
ubuntu_release = "jammy"
137
137
version = "22.04"
138
138
filename = "%s-server-cloudimg-amd64.img" % ubuntu_release
139
+
140
+
141
+ class Ubuntu24 (Ubuntu ):
142
+ url = "https://repo.ifca.es/ubuntu-cloud-images/jammy/"
143
+ ubuntu_release = "noble"
144
+ version = "24.04"
145
+ filename = "%s-server-cloudimg-amd64.img" % ubuntu_release
Original file line number Diff line number Diff line change @@ -54,9 +54,10 @@ ubuntu16 = "imgsync.distros.ubuntu:Ubuntu16"
54
54
ubuntu18 = " imgsync.distros.ubuntu:Ubuntu18"
55
55
ubuntu20 = " imgsync.distros.ubuntu:Ubuntu20"
56
56
ubuntu22 = " imgsync.distros.ubuntu:Ubuntu22"
57
- debian10 = " imgsync.distros.debian:Debian10 "
57
+ ubuntu24 = " imgsync.distros.ubuntu:Ubuntu24 "
58
58
debian11 = " imgsync.distros.debian:Debian11"
59
59
debian12 = " imgsync.distros.debian:Debian12"
60
+ debiantesting = " imgsync.distros.debian:DebianTesting"
60
61
61
62
62
63
[tool .poetry .dependencies ]
You can’t perform that action at this time.
0 commit comments