Browse Source

change disk cleanup to ignore traditional hdd's

Casey DeLorme 3 năm trước cách đây
mục cha
commit
fd16a7b9a1
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      install/usr/local/bin/disk-maintenance

+ 2 - 2
install/usr/local/bin/disk-maintenance

@@ -33,8 +33,8 @@ for filesystem in $(mount -t ext4 | awk '{print $3}'); do
 	cleanup_ext4 "$filesystem" &
 done
 
-# defragment and rebalance btrfs weekly
-for filesystem in $(mount -t btrfs | awk '{print $3}'); do
+# defragment and rebalance ssd-only (hdd are too slow) btrfs weekly
+for filesystem in $(mount -t btrfs | grep "ssd" | awk '{print $3}'); do
 	cleanup_btrfs "$filesystem" &
 done