SkidSec WebShell

Server Address : 2a02:4780:a:760:0:37cc:13e2:3

Web Server : LiteSpeed

Uname : Linux uk-fast-web660.main-hosting.eu 5.14.0-570.55.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Oct 21 05:27:51 EDT 2025 x86_64

PHP Version : 7.4.33



Current Path : /lib/dracut/modules.d/98syslog/



Current File : //lib/dracut/modules.d/98syslog/rsyslogd-stop.sh
#!/usr/bin/sh

type getarg > /dev/null 2>&1 || . /lib/dracut-lib.sh

# Kills rsyslogd

if [ -f /var/run/syslogd.pid ]; then
    read -r pid < /var/run/syslogd.pid
    kill "$pid"
    kill -0 "$pid" && kill -9 "$pid"
else
    warn "rsyslogd-stop: Could not find a pid for rsyslogd. Won't kill it."
fi