4 lines
119 B
Bash
4 lines
119 B
Bash
|
# Create an empty log file if one doesn't already exist
|
||
|
[ ! -e var/log/ices/ices.log ] && touch var/log/ices/ices.log
|
||
|
|