瀏覽代碼

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

Casey DeLorme 3 年之前
父節點
當前提交
65b8df19ac
共有 1 個文件被更改,包括 2 次插入2 次删除
  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