aboutsummaryrefslogtreecommitdiff
path: root/scripts/test-configs
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/test-configs')
-rw-r--r--scripts/test-configs/custom-locale.conf13
-rw-r--r--scripts/test-configs/mirror.conf14
-rw-r--r--scripts/test-configs/no-ssh.conf13
-rw-r--r--scripts/test-configs/raidz1.conf14
-rw-r--r--scripts/test-configs/single-disk.conf13
5 files changed, 67 insertions, 0 deletions
diff --git a/scripts/test-configs/custom-locale.conf b/scripts/test-configs/custom-locale.conf
new file mode 100644
index 0000000..f0cda9b
--- /dev/null
+++ b/scripts/test-configs/custom-locale.conf
@@ -0,0 +1,13 @@
+# Test config: Non-US locale (tests locale handling)
+
+HOSTNAME=test-locale
+TIMEZONE=Europe/Berlin
+LOCALE=de_DE.UTF-8
+KEYMAP=de
+
+DISKS=/dev/vda
+
+NO_ENCRYPT=yes
+ROOT_PASSWORD=testpass
+
+ENABLE_SSH=yes
diff --git a/scripts/test-configs/mirror.conf b/scripts/test-configs/mirror.conf
new file mode 100644
index 0000000..82cfa91
--- /dev/null
+++ b/scripts/test-configs/mirror.conf
@@ -0,0 +1,14 @@
+# Test config: 2-disk mirror (tests EFI redundancy)
+
+HOSTNAME=test-mirror
+TIMEZONE=UTC
+LOCALE=en_US.UTF-8
+KEYMAP=us
+
+DISKS=/dev/vda,/dev/vdb
+RAID_LEVEL=mirror
+
+NO_ENCRYPT=yes
+ROOT_PASSWORD=testpass
+
+ENABLE_SSH=yes
diff --git a/scripts/test-configs/no-ssh.conf b/scripts/test-configs/no-ssh.conf
new file mode 100644
index 0000000..7b6ff63
--- /dev/null
+++ b/scripts/test-configs/no-ssh.conf
@@ -0,0 +1,13 @@
+# Test config: SSH disabled (tests console-only verification)
+
+HOSTNAME=test-nossh
+TIMEZONE=UTC
+LOCALE=en_US.UTF-8
+KEYMAP=us
+
+DISKS=/dev/vda
+
+NO_ENCRYPT=yes
+ROOT_PASSWORD=testpass
+
+ENABLE_SSH=no
diff --git a/scripts/test-configs/raidz1.conf b/scripts/test-configs/raidz1.conf
new file mode 100644
index 0000000..4de8a78
--- /dev/null
+++ b/scripts/test-configs/raidz1.conf
@@ -0,0 +1,14 @@
+# Test config: 3-disk RAIDZ1 (tests RAID parity)
+
+HOSTNAME=test-raidz1
+TIMEZONE=UTC
+LOCALE=en_US.UTF-8
+KEYMAP=us
+
+DISKS=/dev/vda,/dev/vdb,/dev/vdc
+RAID_LEVEL=raidz1
+
+NO_ENCRYPT=yes
+ROOT_PASSWORD=testpass
+
+ENABLE_SSH=yes
diff --git a/scripts/test-configs/single-disk.conf b/scripts/test-configs/single-disk.conf
new file mode 100644
index 0000000..d540198
--- /dev/null
+++ b/scripts/test-configs/single-disk.conf
@@ -0,0 +1,13 @@
+# Test config: Single disk install (most common case)
+
+HOSTNAME=test-single
+TIMEZONE=UTC
+LOCALE=en_US.UTF-8
+KEYMAP=us
+
+DISKS=/dev/vda
+
+NO_ENCRYPT=yes
+ROOT_PASSWORD=testpass
+
+ENABLE_SSH=yes