6 lines
113 B
Text
6 lines
113 B
Text
|
|
#!/usr/bin/env bash
|
||
|
|
if [[ -f /var/log/php*-fpm.log ]]; then
|
||
|
|
tail -f /var/log/php*-fpm.log
|
||
|
|
else
|
||
|
|
sleep 1
|
||
|
|
fi
|