10 lines
197 B
Bash
10 lines
197 B
Bash
#!/bin/sh
|
|
|
|
if [ -f /application/.no-fpm ]; then
|
|
echo " -> Disabling php-fpm service..."
|
|
rm -f /etc/supervisor.d/php-fpm.ini
|
|
fi
|
|
|
|
# scripts at level 00 should not end the framework setup
|
|
exit 1
|