#!/bin/sh
#
# reload-application.sh
#
# Compatibility layer script for legacy setups that expect this script location.
# This script re-parses user.ini files and reloads PHP-FPM configuration.
#
# Legacy systems may call this script to reload application configuration
# after making changes to user.ini files. This script delegates to the
# userini parser which handles the actual parsing and PHP-FPM reload.
#

set -e

# Execute the userini parser wrapper script
exec /platform/bin/run-userini-parser-wrapper.sh
