浏览代码

add size check for zram

fix #99
tags/1.5
Azlux 4 年前
父节点
当前提交
881eea145f
共有 1 个文件被更改,包括 6 次插入1 次删除
  1. +6
    -1
      log2ram

+ 6
- 1
log2ram 查看文件

@@ -23,7 +23,12 @@ syncToDisk () {
syncFromDisk () {
isSafe
if [ ! -z "$(du -sh -t "$SIZE" $HDD_LOG/ | cut -f1)" ]; then
TP_SIZE=$SIZE
if [ "$ZL2R" = true ]; then
TP_SIZE=$LOG_DISK_SIZE
then
if [ ! -z "$(du -sh -t "$TP_SIZE" $HDD_LOG/ | cut -f1)" ]; then
echo "ERROR: RAM disk for "$HDD_LOG/" too small. Can't sync."
umount -l $RAM_LOG/
umount -l $HDD_LOG/


正在加载...
取消
保存