summaryrefslogtreecommitdiffstats
path: root/nixos/modules/tasks/filesystems
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2017-05-07 10:21:10 +0100
committerJörg Thalheim <joerg@thalheim.io>2017-05-07 10:22:14 +0100
commit6b0d8027efccc408752538e6c73f9d429c5d6b76 (patch)
treede286561f325ef5971e5a6c46269c37ff6096ee7 /nixos/modules/tasks/filesystems
parent254b7116e40fad5046c26e0197f5886172b8b9b6 (diff)
zfs: zed service is now called zfs-zed
fixes #25566
Diffstat (limited to 'nixos/modules/tasks/filesystems')
-rw-r--r--nixos/modules/tasks/filesystems/zfs.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/tasks/filesystems/zfs.nix b/nixos/modules/tasks/filesystems/zfs.nix
index 518fe0a97d27..2de3a3d8a330 100644
--- a/nixos/modules/tasks/filesystems/zfs.nix
+++ b/nixos/modules/tasks/filesystems/zfs.nix
@@ -370,7 +370,7 @@ in
in listToAttrs (map createImportService dataPools ++ map createSyncService allPools) // {
"zfs-mount" = { after = [ "systemd-modules-load.service" ]; };
"zfs-share" = { after = [ "systemd-modules-load.service" ]; };
- "zed" = { after = [ "systemd-modules-load.service" ]; };
+ "zfs-zed" = { after = [ "systemd-modules-load.service" ]; };
};
systemd.targets."zfs-import" =