File tree Expand file tree Collapse file tree 3 files changed +26
-0
lines changed
pkg/cidata/cidata.TEMPLATE.d/boot Expand file tree Collapse file tree 3 files changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ Others:
38
38
- [ ` deprecated/centos-7.yaml ` ] ( ./deprecated/centos-7.yaml ) : [ deprecated] CentOS Linux 7
39
39
- [ ` experimental/almalinux-9.yaml ` ] ( experimental/almalinux-9.yaml ) : [ experimental] AlmaLinux 9
40
40
- [ ` experimental/rocky-9.yaml ` ] ( experimental/rocky-9.yaml ) : [ experimental] Rocky Linux 9
41
+ - [ ` experimental/oraclelinux-9.yaml ` ] ( experimental/oraclelinux-9.yaml ) : [ experimental] Oracle Linux 9
41
42
- [ ` experimental/centos-stream-9.yaml ` ] ( experimental/centos-stream-9.yaml ) : [ experimental] CentOS Stream 9
42
43
- [ ` experimental/9p.yaml ` ] ( experimental/9p.yaml ) : [ experimental] use 9p mount type
43
44
- [ ` experimental/riscv64.yaml ` ] ( experimental/riscv64.yaml ) : [ experimental] RISC-V
Original file line number Diff line number Diff line change
1
+ # This example requires Lima v0.11.3 or later.
2
+ # Oracle image licence: https://www.oracle.com/downloads/licenses/oracle-linux-license.html
3
+ # Image source: https://yum.oracle.com/oracle-linux-templates.html
4
+
5
+ images :
6
+ - location : " https://yum.oracle.com/templates/OracleLinux/OL9/u0/x86_64/OL9U0_x86_64-kvm-b138.qcow"
7
+ arch : " x86_64"
8
+ digest : " sha256:7911bf8f0dc7a3e1045967d2d647632aba8cafd9f1505d2cb9bbfb4a0f04f818"
9
+ - location : " https://yum.oracle.com/templates/OracleLinux/OL9/u0/aarch64/OL9U0_aarch64-kvm-b5.qcow"
10
+ arch : " aarch64"
11
+ digest : " sha256:084be40daadc63405bf119626bd9f860c19d754ca3798ae37f8eac675ae5e32c"
12
+ mounts :
13
+ - location : " ~"
14
+ - location : " /tmp/lima"
15
+ writable : true
16
+ firmware :
17
+ legacyBIOS : true
18
+ cpuType :
19
+ # For consistency with AlmaLinux 9
20
+ x86_64 : " Haswell-v4"
Original file line number Diff line number Diff line change @@ -71,6 +71,11 @@ elif command -v dnf >/dev/null 2>&1; then
71
71
dnf_install_flags=" ${dnf_install_flags} --repo ol8_baseos_latest --repo ol8_codeready_builder"
72
72
elif grep -q " release 8" /etc/system-release; then
73
73
dnf_install_flags=" ${dnf_install_flags} --enablerepo powertools"
74
+ elif grep -q " Oracle Linux Server release 9" /etc/system-release; then
75
+ # shellcheck disable=SC2086
76
+ dnf install ${dnf_install_flags} oracle-epel-release-el9
77
+ dnf config-manager --disable ol9_developer_EPEL > /dev/null 2>&1
78
+ dnf_install_flags=" ${dnf_install_flags} --enablerepo ol9_developer_EPEL"
74
79
elif grep -q " release 9" /etc/system-release; then
75
80
# shellcheck disable=SC2086
76
81
dnf install ${dnf_install_flags} epel-release
You can’t perform that action at this time.
0 commit comments