···8181 </listitem>
8282 <listitem>
8383 <para>
8484+ <link xlink:href="https://github.com/linux-apfs/linux-apfs-rw">apfs</link>,
8585+ a kernel module for mounting the Apple File System (APFS).
8686+ </para>
8787+ </listitem>
8888+ <listitem>
8989+ <para>
8490 <link xlink:href="https://frrouting.org/">FRRouting</link>, a
8591 popular suite of Internet routing protocol daemons (BGP, BFD,
8692 OSPF, IS-IS, VVRP and others). Available as
+2
nixos/doc/manual/release-notes/rl-2205.section.md
···27272828- [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).
29293030+- [apfs](https://github.com/linux-apfs/linux-apfs-rw), a kernel module for mounting the Apple File System (APFS).
3131+3032- [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)
31333234- [heisenbridge](https://github.com/hifi/heisenbridge), a bouncer-style Matrix IRC bridge. Available as [services.heisenbridge](options.html#opt-services.heisenbridge.enable).
···282282 # Don't check resilient COWs as they validate the fs structures at mount time
283283 if [ "$fsType" = btrfs -o "$fsType" = zfs -o "$fsType" = bcachefs ]; then return 0; fi
284284285285+ # Skip fsck for apfs as the fsck utility does not support repairing the filesystem (no -a option)
286286+ if [ "$fsType" = apfs ]; then return 0; fi
287287+285288 # Skip fsck for nilfs2 - not needed by design and no fsck tool for this filesystem.
286289 if [ "$fsType" = nilfs2 ]; then return 0; fi
287290