mirror of
https://github.com/status-im/nimbus-eth2.git
synced 2025-01-09 13:56:23 +00:00
10 lines
235 B
Bash
10 lines
235 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# Helper script for Apache rotatelogs to compress log files on rotation - `$2` contains the old log file name
|
||
|
|
||
|
if [ -f "$2" ]; then
|
||
|
# "nice" prevents hogging the CPU with this low-priority task
|
||
|
nice gzip -9 "$2"
|
||
|
fi
|
||
|
|