-
-
Notifications
You must be signed in to change notification settings - Fork 18.2k
mediatomb/gerbera: Add release note information for 21.03 #100348
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
|
|
@@ -242,6 +242,24 @@ | |||||||
| <literal>/var/lib/powerdns</literal> to <literal>/run/pdns</literal>. | ||||||||
| </para> | ||||||||
| </listitem> | ||||||||
| <listitem> | ||||||||
| <para> | ||||||||
| The <link linked="opt-services.mediatomb">mediatomb service</link> is | ||||||||
| now using by default the new and maintained fork | ||||||||
| <literal>gerbera</literal> package instead of the unmaintained | ||||||||
| <literal>mediatomb</literal> package. If you want to keep the old | ||||||||
| behavior, you must declare it with: | ||||||||
| <programlisting> | ||||||||
| services.mediatomb.package = pkgs.mediatomb; | ||||||||
| </programlisting> | ||||||||
| One new option <literal>openFirewall<literal> has been introduced which | ||||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||
| defaults to false. If you relied on the service declaration to add the | ||||||||
| firewall rules itself before, you should now declare it with: | ||||||||
| <programlisting> | ||||||||
| services.mediatomb.openFirewall = true; | ||||||||
| </programlisting> | ||||||||
| </para> | ||||||||
| </listitem> | ||||||||
| <listitem> | ||||||||
| <para> | ||||||||
| xfsprogs was update from 4.19 to 5.11. It now enables reflink support by default on filesystem creation. | ||||||||
|
|
@@ -707,6 +725,28 @@ environment.systemPackages = [ | |||||||
| All services should use <xref linkend="opt-systemd.services._name_.startLimitIntervalSec" /> or <literal>StartLimitIntervalSec</literal> in <xref linkend="opt-systemd.services._name_.unitConfig" /> instead. | ||||||||
| </para> | ||||||||
| </listitem> | ||||||||
| <listItem> | ||||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||
| <para> | ||||||||
| The <link linked="opt-services.mediatomb">mediatomb service</link> | ||||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||
| declares new options. It also adapts existing options so the | ||||||||
| configuration generation is now lazy. The existing option | ||||||||
| <literal>customCfg</literal> (defaults to false), when enabled, stops | ||||||||
| the service configuration generation completely. It then expects the | ||||||||
| users to provide their own correct configuration at the right location | ||||||||
| (whereas the configuration was generated and not used at all before). | ||||||||
| The new option <literal>transcodingOption</literal> (defaults to no) | ||||||||
| allows a generated configuration. It makes the mediatomb service pulls | ||||||||
| the necessary runtime dependencies in the nix store (whereas it was | ||||||||
| generated with hardcoded values before). The new option | ||||||||
| <literal>mediaDirectories</literal> allows the users to declare autoscan | ||||||||
| media directories from their nixos configuration: | ||||||||
| <programlisting> | ||||||||
| services.mediatomb.mediaDirectories = [ | ||||||||
| { path = "/var/lib/mediatomb/pictures"; recursive = false; hidden-files = false; } | ||||||||
| { path = "/var/lib/mediatomb/audio"; recursive = true; hidden-files = false; } | ||||||||
| ]; | ||||||||
| </programlisting> | ||||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||
| </listItem> | ||||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||
| <listitem> | ||||||||
| <para> | ||||||||
| The Unbound DNS resolver service (<literal>services.unbound</literal>) has been refactored to allow reloading, control sockets and to fix startup ordering issues. | ||||||||
|
|
||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
opt-services.mediatombis no reference target, only its sub-options are.