From 3b878785e3e5e9148fdfb0cf1cf192eef491a8bf Mon Sep 17 00:00:00 2001 From: mathijs28 Date: Tue, 5 Nov 2024 12:25:35 +0100 Subject: [PATCH] main/nyagetty: fix syntax error in agetty-service.sh When starting a serial getty by specifying it in `/etc/default/agetty` or running `dinitctl start agetty-service@ttyS0`, the service would crash because of a syntax error in the helper script `/usr/lib/agetty-service`. --- main/nyagetty/files/agetty-service.sh | 2 +- main/nyagetty/template.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/main/nyagetty/files/agetty-service.sh b/main/nyagetty/files/agetty-service.sh index 7833e24b7e..bf1b068b8f 100644 --- a/main/nyagetty/files/agetty-service.sh +++ b/main/nyagetty/files/agetty-service.sh @@ -4,4 +4,4 @@ case "$1" in tty[0-9]*|console) exec /usr/lib/agetty-default "$@" ;; esac -exec /usr/lib/agetty-serial "$@" ;; +exec /usr/lib/agetty-serial "$@" diff --git a/main/nyagetty/template.py b/main/nyagetty/template.py index db7c64efe7..7bb0e1a104 100644 --- a/main/nyagetty/template.py +++ b/main/nyagetty/template.py @@ -1,6 +1,6 @@ pkgname = "nyagetty" pkgver = "2.38.99" -pkgrel = 5 +pkgrel = 6 build_style = "meson" hostmakedepends = ["meson"] makedepends = ["linux-headers"]