Explorar el Código

Merge branch 'master' of git.caseydelorme.com:cdelorme/arch-desktop

Casey DeLorme hace 3 años
padre
commit
65b8df19ac
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