fix: PXE boot debugging — bisect root cause, syslog logging, serial console #3

Merged
michal merged 31 commits from wip/ks-debugging into main 2026-03-29 00:50:05 +00:00
2 changed files with 11 additions and 1 deletions
Showing only changes of commit 48b2230665 - Show all commits

View File

@@ -121,7 +121,8 @@ ${userDirective}
bootloader --append="console=tty0 console=ttyS0,115200n8"
logging --host=${serverIp} --port=${syslogPort} --level=info
# logging --host=${serverIp} --port=${syslogPort} --level=info
# TODO: Enable once syslog UDP port is opened in firewall and tested standalone
url --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch

View File

@@ -0,0 +1,9 @@
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
globals: true,
include: ['tests/integration/**/*.test.ts'],
testTimeout: 600000,
},
});