summary refs log tree commit diff
path: root/nixos/doc/manual/release-notes/rl-2205.section.md
diff options
context:
space:
mode:
authormidchildan <git@midchildan.org>2022-02-14 00:49:15 +0900
committermidchildan <git@midchildan.org>2022-03-12 15:10:38 +0900
commit561c0c28519c7b378078d5ee510c6727fb310d28 (patch)
treeebdfe6793f615000e52cfd12024949ada10aceaf /nixos/doc/manual/release-notes/rl-2205.section.md
parent5e7be6b480929b8e63a76eccbae441254c5e878b (diff)
downloadnixpkgs-561c0c28519c7b378078d5ee510c6727fb310d28.tar
nixpkgs-561c0c28519c7b378078d5ee510c6727fb310d28.tar.gz
nixpkgs-561c0c28519c7b378078d5ee510c6727fb310d28.tar.bz2
nixpkgs-561c0c28519c7b378078d5ee510c6727fb310d28.tar.lz
nixpkgs-561c0c28519c7b378078d5ee510c6727fb310d28.tar.xz
nixpkgs-561c0c28519c7b378078d5ee510c6727fb310d28.tar.zst
nixpkgs-561c0c28519c7b378078d5ee510c6727fb310d28.zip
nixos/rl-2205: add entries for EPGStation v2
Diffstat (limited to 'nixos/doc/manual/release-notes/rl-2205.section.md')
-rw-r--r--nixos/doc/manual/release-notes/rl-2205.section.md24
1 files changed, 24 insertions, 0 deletions
diff --git a/nixos/doc/manual/release-notes/rl-2205.section.md b/nixos/doc/manual/release-notes/rl-2205.section.md
index 58a1b23d17b..1c4a8735277 100644
--- a/nixos/doc/manual/release-notes/rl-2205.section.md
+++ b/nixos/doc/manual/release-notes/rl-2205.section.md
@@ -321,6 +321,30 @@ In addition to numerous new and upgraded packages, this release has the followin
   `pkgs.noto-fonts-cjk` is currently an alias of `pkgs.noto-fonts-cjk-sans` and
   doesn't include serif fonts.
 
+- `pkgs.epgstation` has been upgraded from v1 to v2, resulting in incompatible
+  changes in the database scheme and configuration format.
+
+- Some top-level settings under [services.epgstation](#opt-services.epgstation)
+  is now deprecated because it was redudant due to the same options being
+  present in [services.epgstation.settings](#opt-services.epgstation.settings).
+
+- The option [services.epgstation.basicAuth](#opt-services.epgstation.basicAuth)
+  was removed because basic authentication support was dropped by upstream.
+
+- The option [services.epgstation.database.passwordFile](#opt-services.epgstation.database.passwordFile)
+  no longer has a default value. Make sure to set this option explicitly before
+  upgrading. Change the database password if necessary.
+
+- The [services.epgstation.settings](#opt-services.epgstation.settings)
+  option now expects options for `config.yml` in EPGStation v2.
+
+- Existing data for the [services.epgstation](#opt-services.epgstation.enable)
+  module would have to be backed up prior to the upgrade. To back up exising
+  data to `/tmp/epgstation.bak`, run
+  `sudo -u epgstation epgstation run backup /tmp/epgstation.bak`.
+  To import that data after to the upgrade, run
+  `sudo -u epgstation epgstation run v1migrate /tmp/epgstation.bak`
+
 - `switch-to-configuration` (the script that is run when running `nixos-rebuild switch` for example) has been reworked
     * The interface that allows activation scripts to restart units has been streamlined. Restarting and reloading is now done by a single file `/run/nixos/activation-restart-list` that honors `restartIfChanged` and `reloadIfChanged` of the units.
         * Preferring to reload instead of restarting can still be achieved using `/run/nixos/activation-reload-list`.