about summary refs log tree commit diff
path: root/nixos/modules/tasks/filesystems
diff options
context:
space:
mode:
authorWill Fancher <elvishjerricco@gmail.com>2022-04-14 17:23:03 -0400
committerWill Fancher <elvishjerricco@gmail.com>2022-05-03 12:55:01 -0400
commit0a16158078ecf6d1cff298a3bfc3fc608d65b5ca (patch)
treee0d6d24e956c980c630734563afe984516341fb8 /nixos/modules/tasks/filesystems
parent8555a7fdbfdf7d27096de9b23b650244d842780c (diff)
downloadnixlib-0a16158078ecf6d1cff298a3bfc3fc608d65b5ca.tar
nixlib-0a16158078ecf6d1cff298a3bfc3fc608d65b5ca.tar.gz
nixlib-0a16158078ecf6d1cff298a3bfc3fc608d65b5ca.tar.bz2
nixlib-0a16158078ecf6d1cff298a3bfc3fc608d65b5ca.tar.lz
nixlib-0a16158078ecf6d1cff298a3bfc3fc608d65b5ca.tar.xz
nixlib-0a16158078ecf6d1cff298a3bfc3fc608d65b5ca.tar.zst
nixlib-0a16158078ecf6d1cff298a3bfc3fc608d65b5ca.zip
zfs: Update comment for https://github.com/zfsonlinux/zfs/pull/4943
Diffstat (limited to 'nixos/modules/tasks/filesystems')
-rw-r--r--nixos/modules/tasks/filesystems/zfs.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/nixos/modules/tasks/filesystems/zfs.nix b/nixos/modules/tasks/filesystems/zfs.nix
index 306bd2552177..4675c06cfdec 100644
--- a/nixos/modules/tasks/filesystems/zfs.nix
+++ b/nixos/modules/tasks/filesystems/zfs.nix
@@ -100,7 +100,9 @@ let
   createImportService = { pool, systemd, force, prefix ? "" }:
     nameValuePair "zfs-import-${pool}" {
       description = "Import ZFS pool \"${pool}\"";
-      # we need systemd-udev-settle until https://github.com/zfsonlinux/zfs/pull/4943 is merged
+      # we need systemd-udev-settle to ensure devices are available
+      # In the future, hopefully someone will complete this:
+      # https://github.com/zfsonlinux/zfs/pull/4943
       requires = [ "systemd-udev-settle.service" ];
       after = [
         "systemd-udev-settle.service"