From 2646f037ab8e8ba374941df33b84efd6f34fe56f Mon Sep 17 00:00:00 2001 From: bjorn3 <17426603+bjorn3@users.noreply.github.com> Date: Fri, 12 Jul 2024 15:47:06 +0200 Subject: [PATCH] Use the new scheme format in system configs --- config/base.toml | 8 ++++---- config/minimal-net.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/config/base.toml b/config/base.toml index ff4a1b6..85f2ffc 100644 --- a/config/base.toml +++ b/config/base.toml @@ -130,22 +130,22 @@ symlink = true ## Device file symlinks [[files]] path = "/dev/null" -data = "null:" +data = "/scheme/null" symlink = true [[files]] path = "/dev/random" -data = "rand:" +data = "/scheme/rand" symlink = true [[files]] path = "/dev/urandom" -data = "rand:" +data = "/scheme/rand" symlink = true [[files]] path = "/dev/zero" -data = "zero:" +data = "/scheme/zero" symlink = true [[files]] diff --git a/config/minimal-net.toml b/config/minimal-net.toml index 3118e45..1f41780 100644 --- a/config/minimal-net.toml +++ b/config/minimal-net.toml @@ -24,7 +24,7 @@ path = "/usr/lib/init.d/30_console" data = """ inputd -A 2 getty 2 -getty debug: -J +getty /scheme/debug -J """ [[files]]