From 7cae71edabd601b15fe62fce2c9c158c0254cd84 Mon Sep 17 00:00:00 2001 From: Pratham Patel Date: Sat, 24 Dec 2022 09:43:35 +0530 Subject: [PATCH] bluefeds: finalize which services to enable and which ones to disable --- content/posts/bluefeds.md | 21 ++------------------- 1 file changed, 2 insertions(+), 19 deletions(-) diff --git a/content/posts/bluefeds.md b/content/posts/bluefeds.md index 634e34d..78b45b2 100644 --- a/content/posts/bluefeds.md +++ b/content/posts/bluefeds.md @@ -226,26 +226,9 @@ echo "zfs" | sudo tee /etc/modules-load.d/zfs.conf ### Enable necessary services ```bash -sudo systemctl enable zfs-import-cache.service -sudo systemctl enable zfs-import-scan.service -sudo systemctl enable zfs-mount.service -sudo systemctl enable zfs-share.service -sudo systemctl enable zfs.target -sudo systemctl enable zfs-zed.service +sudo systemctl enable zfs-zed.service zfs-import-cache.service zfs-import-scan.service zfs-mount.service zfs-share.service zfs-volume-wait.service zfs-import.target zfs-volumes.target zfs.target -50-zfs.preset -zfs-zed.service -zfs-import-cache.service -zfs-import-scan.service -zfs-mount.service -zfs-share.service -zfs-volume-wait.service -zfs-import.target -zfs-volumes.target -zfs.target -zfs-scrub-monthly@.timer -zfs-scrub-weekly@.timer -zfs-scrub@.service +sudo systemctl disable zfs-scrub-monthly@.timer zfs-scrub-weekly@.timer zfs-scrub@.service ```