HEX
Server: Apache
System: Linux server.hypertech-it.com 5.14.0-570.37.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Aug 26 10:33:12 EDT 2025 x86_64
User: national (1024)
PHP: 8.1.33
Disabled: NONE
Upload Files
File: //opt/lsw-postinstall
#!/usr/bin/env bash

echo "Running lsw-postinstall scripts"

for FILE in /opt/lsw-postinstall.d/*
do
    echo "==> Running ${FILE}"
    if [ -x "${FILE}" ]
    then
        ${FILE}
        EXITCODE=$?
    else
        bash "${FILE}"
        EXITCODE=$?
    fi

    echo "==> Done Running ${FILE} with exit code ${EXITCODE}"
done

echo "All done!"