From f212c417348a5a0c10b2764bc20d78c86669a53a Mon Sep 17 00:00:00 2001 From: Hyperling Date: Tue, 14 Oct 2025 11:53:13 -0700 Subject: [PATCH] Add `ps` requirement, missing from Docker container! --- run.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/run.sh b/run.sh index 4d25526..72a66fe 100755 --- a/run.sh +++ b/run.sh @@ -91,6 +91,10 @@ if [[ ! `which curl` ]]; then echo "- Installing Curl" $sudo apt-get install -y curl fi +if [[ ! `which ps` ]]; then + echo "- Installing PS" + $sudo apt-get install -y ps +fi # Directories and allowed page types are executable, others are not. log "Fix any strange file permissions."