Merge pull request #14 from Sailing74/checkdirsize

Added check of tmpfs size before syncing HDD to RAM.
This commit is contained in:
azlux 2017-04-19 13:13:35 +02:00 committed by GitHub
commit c7870156ec
1 changed files with 5 additions and 0 deletions

View File

@ -28,6 +28,11 @@ syncToDisk () {
syncFromDisk () {
isSafe
if [ ! -z `du -sh -t $SIZE $HDD_LOG | cut -f1` ]; then
echo "ERROR: RAM disk too small. Can't sync."
exit 1
fi
if [ "$USE_RSYNC" = true ]; then
rsync -aXWv --delete --exclude log2ram.log --links $HDD_LOG $RAM_LOG 2>&1 | $LOG_OUTPUT
else