summaryrefslogtreecommitdiffstats
path: root/nixos/doc
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-11-02 00:01:32 +0000
committerGitHub <noreply@github.com>2021-11-02 00:01:32 +0000
commitd27dd6653ef32f35d50db3f249ac4658ba18a5b1 (patch)
treee968f483c0f81f6f6d973ec3e47bb4258a6ac0a6 /nixos/doc
parent107b7f5d3931d42c68fe1f51bb62d3d98cf208bf (diff)
parent550dab224a26ec25e20e82c0c8bfc764e01b772e (diff)
Merge master into staging-next
Diffstat (limited to 'nixos/doc')
-rw-r--r--nixos/doc/manual/from_md/release-notes/rl-2111.section.xml17
-rw-r--r--nixos/doc/manual/release-notes/rl-2111.section.md2
2 files changed, 19 insertions, 0 deletions
diff --git a/nixos/doc/manual/from_md/release-notes/rl-2111.section.xml b/nixos/doc/manual/from_md/release-notes/rl-2111.section.xml
index 7d31b4ec0026..c9657048f579 100644
--- a/nixos/doc/manual/from_md/release-notes/rl-2111.section.xml
+++ b/nixos/doc/manual/from_md/release-notes/rl-2111.section.xml
@@ -1518,6 +1518,23 @@ Superuser created successfully.
<listitem>
<para>
The
+ <link xlink:href="options.html#opt-services.smokeping.host">services.smokeping.host</link>
+ option was added and defaulted to
+ <literal>localhost</literal>. Before,
+ <literal>smokeping</literal> listened to all interfaces by
+ default. NixOS defaults generally aim to provide
+ non-Internet-exposed defaults for databases and internal
+ monitoring tools, see e.g.
+ <link xlink:href="https://github.com/NixOS/nixpkgs/issues/100192">#100192</link>.
+ Further, the systemd service for <literal>smokeping</literal>
+ got reworked defaults for increased operational stability, see
+ <link xlink:href="https://github.com/NixOS/nixpkgs/pull/144127">PR
+ #144127</link> for details.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ The
<link xlink:href="options.html#opt-services.syncoid.enable">services.syncoid.enable</link>
module now properly drops ZFS permissions after usage. Before
it delegated permissions to whole pools instead of datasets
diff --git a/nixos/doc/manual/release-notes/rl-2111.section.md b/nixos/doc/manual/release-notes/rl-2111.section.md
index d77c664693cd..2301b76304a9 100644
--- a/nixos/doc/manual/release-notes/rl-2111.section.md
+++ b/nixos/doc/manual/release-notes/rl-2111.section.md
@@ -445,6 +445,8 @@ In addition to numerous new and upgraded packages, this release has the followin
- The [networking.wireless.iwd](options.html#opt-networking.wireless.iwd.enable) module has a new [networking.wireless.iwd.settings](options.html#opt-networking.wireless.iwd.settings) option.
+- The [services.smokeping.host](options.html#opt-services.smokeping.host) option was added and defaulted to `localhost`. Before, `smokeping` listened to all interfaces by default. NixOS defaults generally aim to provide non-Internet-exposed defaults for databases and internal monitoring tools, see e.g. [#100192](https://github.com/NixOS/nixpkgs/issues/100192). Further, the systemd service for `smokeping` got reworked defaults for increased operational stability, see [PR #144127](https://github.com/NixOS/nixpkgs/pull/144127) for details.
+
- The [services.syncoid.enable](options.html#opt-services.syncoid.enable) module now properly drops ZFS permissions after usage. Before it delegated permissions to whole pools instead of datasets and didn't clean up after execution. You can manually look this up for your pools by running `zfs allow your-pool-name` and use `zfs unallow syncoid your-pool-name` to clean this up.
- Zfs: `latestCompatibleLinuxPackages` is now exported on the zfs package. One can use `boot.kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;` to always track the latest compatible kernel with a given version of zfs.