1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
{
"install_git_from_src": {
"image": "ubuntu:focal",
"features": {
"git": {
"version": "latest",
"ppa": "false"
}
}
},
"install_git_from_src_jammy": {
"image": "ubuntu:jammy",
"features": {
"git": {
"version": "latest",
"ppa": "false"
}
}
},
"install_git_from_src_bionic": {
"image": "ubuntu:bionic",
"features": {
"git": {
"version": "latest",
"ppa": "false"
}
}
},
"install_git_from_src_bullseye": {
"image": "debian:bullseye",
"features": {
"git": {
"version": "latest",
"ppa": "false"
}
}
},
"install_git_from_src_buster": {
"image": "debian:buster",
"features": {
"git": {
"version": "latest",
"ppa": "false"
}
}
}
}
|