mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-08-02 15:33:32 +00:00
12 lines
233 B
Bash
Executable File
12 lines
233 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -n "$(ls -A /data/etc/prerun 2> /dev/null)" ]; then
|
|
for script in /data/etc/prerun/*.sh; do
|
|
echo "Exexcuting prerun script: $script"
|
|
chmod +x "$script"
|
|
"$script"
|
|
done
|
|
fi
|
|
|
|
exec start.sh
|