Added check of tmpfs size before syncing HDD to RAM.

This commit is contained in:
Sailing74 2017-04-18 15:53:36 +02:00
parent 18ace5438f
commit df63737eac
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