From 0ee8e95f62599c4d0e217a7ab1be88d4bef6c70b Mon Sep 17 00:00:00 2001 From: Josh Megnauth Date: Sun, 20 Oct 2024 02:23:04 -0400 Subject: [PATCH] fix: Invalid space in `/etc/hostname` Spaces and newlines are invalid in hostnames. However, the base config inadvertently creates an `/etc/hostname` with a newline after "redox". This can cause programs to fail. --- config/default.toml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/config/default.toml b/config/default.toml index fef03c7b6e..5982898a10 100644 --- a/config/default.toml +++ b/config/default.toml @@ -141,9 +141,7 @@ data = "https://static.redox-os.org/pkg" [[files]] path = "/etc/hostname" -data = """ -redox -""" +data = "redox" [[files]] path = "/etc/issue"