···81 </listitem>
82 <listitem>
83 <para>
00000084 <link xlink:href="https://frrouting.org/">FRRouting</link>, a
85 popular suite of Internet routing protocol daemons (BGP, BFD,
86 OSPF, IS-IS, VVRP and others). Available as
···81 </listitem>
82 <listitem>
83 <para>
84+ <link xlink:href="https://github.com/linux-apfs/linux-apfs-rw">apfs</link>,
85+ a kernel module for mounting the Apple File System (APFS).
86+ </para>
87+ </listitem>
88+ <listitem>
89+ <para>
90 <link xlink:href="https://frrouting.org/">FRRouting</link>, a
91 popular suite of Internet routing protocol daemons (BGP, BFD,
92 OSPF, IS-IS, VVRP and others). Available as
+2
nixos/doc/manual/release-notes/rl-2205.section.md
···2728- [filebeat](https://www.elastic.co/guide/en/beats/filebeat/current/filebeat-overview.html), a lightweight shipper for forwarding and centralizing log data. Available as [services.filebeat](#opt-services.filebeat.enable).
290030- [FRRouting](https://frrouting.org/), a popular suite of Internet routing protocol daemons (BGP, BFD, OSPF, IS-IS, VVRP and others). Available as [services.frr](#opt-services.ffr.babel.enable)
3132- [heisenbridge](https://github.com/hifi/heisenbridge), a bouncer-style Matrix IRC bridge. Available as [services.heisenbridge](options.html#opt-services.heisenbridge.enable).
···2728- [filebeat](https://www.elastic.co/guide/en/beats/filebeat/current/filebeat-overview.html), a lightweight shipper for forwarding and centralizing log data. Available as [services.filebeat](#opt-services.filebeat.enable).
2930+- [apfs](https://github.com/linux-apfs/linux-apfs-rw), a kernel module for mounting the Apple File System (APFS).
31+32- [FRRouting](https://frrouting.org/), a popular suite of Internet routing protocol daemons (BGP, BFD, OSPF, IS-IS, VVRP and others). Available as [services.frr](#opt-services.ffr.babel.enable)
3334- [heisenbridge](https://github.com/hifi/heisenbridge), a bouncer-style Matrix IRC bridge. Available as [services.heisenbridge](options.html#opt-services.heisenbridge.enable).
···282 # Don't check resilient COWs as they validate the fs structures at mount time
283 if [ "$fsType" = btrfs -o "$fsType" = zfs -o "$fsType" = bcachefs ]; then return 0; fi
284000285 # Skip fsck for nilfs2 - not needed by design and no fsck tool for this filesystem.
286 if [ "$fsType" = nilfs2 ]; then return 0; fi
287
···282 # Don't check resilient COWs as they validate the fs structures at mount time
283 if [ "$fsType" = btrfs -o "$fsType" = zfs -o "$fsType" = bcachefs ]; then return 0; fi
284285+ # Skip fsck for apfs as the fsck utility does not support repairing the filesystem (no -a option)
286+ if [ "$fsType" = apfs ]; then return 0; fi
287+288 # Skip fsck for nilfs2 - not needed by design and no fsck tool for this filesystem.
289 if [ "$fsType" = nilfs2 ]; then return 0; fi
290