-
Notifications
You must be signed in to change notification settings - Fork 66
Open
Description
The run.sh script attempts to tail the lighttpd logs:
# display logs
tail -F /var/log/lighttpd/*log &
But tat the time this script runs, these log files don't exist, so the wildcard expansion fails, so you get:
tail: can't open '/var/log/lighttpd/*log': No such file or directory
If you replace this with:
tail -F /var/log/lighttpd/access.log /var/log/lighttpd/error.log
It should work as intended.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels