From: Stefan Schantl Date: Fri, 24 Feb 2023 16:36:05 +0000 (+0100) Subject: Add systemd service file to launch bricklayer in install mode. X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f5eed2d5016e283be8c53bda2fcdbb5e7bce82ce;p=people%2Fms%2Fbricklayer.git Add systemd service file to launch bricklayer in install mode. This service file will launch bricklayer in install mode in case "install" has been given on the kernel command line. Signed-off-by: Stefan Schantl Signed-off-by: Michael Tremer --- diff --git a/src/systemd/bricklayer.service.in b/src/systemd/bricklayer.service.in index e69de29..852fff1 100644 --- a/src/systemd/bricklayer.service.in +++ b/src/systemd/bricklayer.service.in @@ -0,0 +1,30 @@ +[Unit] +Description=Launch bricklayer to install a new system +After=plymouth-quit-wait.service +After=systemd-vconsole-setup.service systemd-user-sessions.service +# getty-pre.target is a pasive target, we need to request it before we can use it +Wants=getty-pre.target +# prevent getty from running on any consoles before we are done +Before=getty-pre.target +Conflicts=plymouth-quit-wait.service bricklayer.service +ConditionKernelCommandLine=install + +[Service] +Type=oneshot +TimeoutSec=0 +RemainAfterExit=yes +# tell systemd to stop logging to the console, to prevent it's messages +# with interfering with the Initial Setup TUI potentially running there +ExecStartPre=/bin/kill -SIGRTMIN+21 1 +ExecStartPre=-/bin/plymouth quit +ExecStart=@BINDIR@/bricklayer +# re-enable systemd console logging once Initial Setup is done +ExecStartPost=/bin/kill -SIGRTMIN+20 1 +TimeoutSec=0 +RemainAfterExit=no +StandardInput=tty +StandardOutput=tty +StandardError=tty + +[Install] +WantedBy=multi-user.target