Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
proc
/
self
/
root
/
proc
/
self
/
root
/
usr
/
bin
/
X11
/
X11
/
//proc/self/root/proc/self/root/usr/bin/X11/X11/reload_application
#!/bin/sh readonly uwsgi_pidfile=/srv/run/uwsgi/uwsgi.pid readonly nodewd_pidfile=/srv/run/nodejs/nodejs-watchd.pid pidfile= if [ -f "$uwsgi_pidfile" ]; then pidfile="$uwsgi_pidfile" elif [ -f "$nodewd_pidfile" ]; then pidfile="$nodewd_pidfile" fi if [ -n "$pidfile" ] && pkill --pidfile "$pidfile" --signal HUP; then echo Application is being reloaded exit 0 fi echo Application could not be reloaded exit 1