File tree Expand file tree Collapse file tree 3 files changed +17
-0
lines changed
pkg/cidata/cidata.TEMPLATE.d/boot Expand file tree Collapse file tree 3 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ Others:
40
40
- [ ` experimental/rocky-9.yaml ` ] ( experimental/rocky-9.yaml ) : [ experimental] Rocky Linux 9
41
41
- [ ` experimental/oraclelinux-9.yaml ` ] ( experimental/oraclelinux-9.yaml ) : [ experimental] Oracle Linux 9
42
42
- [ ` experimental/centos-stream-9.yaml ` ] ( experimental/centos-stream-9.yaml ) : [ experimental] CentOS Stream 9
43
+ - [ ` experimental/opensuse-tumbleweed.yaml ` ] ( experimental/opensuse-tumbleweed.yaml ) : [ experimental] openSUSE Tumbleweed
43
44
- [ ` experimental/9p.yaml ` ] ( experimental/9p.yaml ) : [ experimental] use 9p mount type
44
45
- [ ` experimental/riscv64.yaml ` ] ( experimental/riscv64.yaml ) : [ experimental] RISC-V
45
46
- [ ` experimental/apptainer.yaml ` ] ( ./experimental/apptainer.yaml ) : [ experimental] [ Apptainer] ( https://apptainer.org/ )
Original file line number Diff line number Diff line change
1
+ # This example requires Lima v0.11.3 or later
2
+ images :
3
+ # Hint: run `limactl prune` to invalidate the "Current" cache
4
+ - location : https://download.opensuse.org/tumbleweed/appliances/openSUSE-Tumbleweed-JeOS.x86_64-OpenStack-Cloud.qcow2
5
+ arch : " x86_64"
6
+ # No aarch64 OpenStack build found :(
7
+ mounts :
8
+ - location : " ~"
9
+ - location : " /tmp/lima"
10
+ writable : true
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
2
set -eux
3
3
4
+ # openSUSE Tumbleweed uses /etc/ssh/sshd_config.d, not /etc/ssh/sshd_config
5
+ # TODO: support /etc/ssh/sshd_config.d
6
+ if [ ! -e /etc/ssh/sshd_config ]; then
7
+ exit 0
8
+ fi
9
+
4
10
if grep -q " COLORTERM" /etc/ssh/sshd_config; then
5
11
exit 0
6
12
fi
You can’t perform that action at this time.
0 commit comments