Explorar el Código

change disk cleanup to ignore traditional hdd's

Casey DeLorme hace 3 años
padre
commit
fd16a7b9a1
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  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