Skip to content

Commit

Permalink
add systemd service for filtering kernel
Browse files Browse the repository at this point in the history
  • Loading branch information
jreidinger committed Jan 16, 2025
1 parent 6cc2517 commit 8d4679f
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions live/root/etc/systemd/system/agama-cmdline-process.service
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
[Unit]
Description=Agama kernel cmdline processing

# have to be after network to be able to download info files
After=network-online.target

# before starting the Agama servers so they read configuration parsed
Before=agama-web-server.service
Before=agama.service
Before=x11-autologin.service

[Service]
Type=oneshot
Environment=TERM=linux
ExecStart=kernel-cmdline-conf.sh
StandardInput=tty
TimeoutSec=0

[Install]
WantedBy=default.target

0 comments on commit 8d4679f

Please sign in to comment.