mirror of
https://github.com/Kicksecure/security-misc.git
synced 2025-05-05 13:44:59 -04:00
fix panic-on-oops started every 10s in Qubes-Whonix
by changing from a /etc/profile.d etc. related mechanism to start to a systemd unit file based approach Thanks to @marmarek for the bug report! https://forums.whonix.org/t/panic-on-oops-started-every-10s/19450
This commit is contained in:
parent
af6c6971a7
commit
6b76373395
2 changed files with 20 additions and 5 deletions
20
usr/lib/systemd/system/panic-on-oops.service
Normal file
20
usr/lib/systemd/system/panic-on-oops.service
Normal file
|
@ -0,0 +1,20 @@
|
|||
## Copyright (C) 2024 - 2024 ENCRYPTED SUPPORT LP <adrelanos@whonix.org>
|
||||
## See the file COPYING for copying conditions.
|
||||
|
||||
[Unit]
|
||||
Description=Sets 'sysctl kernel.panic_on_oops=1' late during the boot process.
|
||||
Documentation=https://github.com/Kicksecure/security-misc
|
||||
|
||||
ConditionKernelCommandLine=!panic-on-oops=0
|
||||
|
||||
After=multi-user.target
|
||||
After=graphical.target
|
||||
After=getty.target
|
||||
|
||||
[Service]
|
||||
Type=oneshot
|
||||
RemainAfterExit=yes
|
||||
ExecStart=/usr/libexec/security-misc/panic-on-oops
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
Loading…
Add table
Add a link
Reference in a new issue