HEX
Server: Apache
System: Linux cp11.instainternet.com 4.18.0-553.94.1.lve.el8.x86_64 #1 SMP Thu Jan 22 12:37:22 UTC 2026 x86_64
User: urbansports (1371)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: //usr/share/cagefs/065-passenger-cagefs
#!/bin/bash

ARGS=$@
PACKAGE="ea-apache24-mod-passenger"

# passed arguments appears to be '--pkg_list=/tmp/tmp3fgs68qr',
# specifying the file containing the list of packages
# involved in the current transaction
file_name=$(echo "$ARGS" | awk -F '=' '{print $2}')
packages=$(cat "$file_name")

if [[ "$packages" =~ $PACKAGE ]]; then
    /usr/sbin/cagefsctl --reconfigure-cagefs
fi

exit 0