aboutsummaryrefslogtreecommitdiff
path: root/NEWS.md
diff options
context:
space:
mode:
authorWilliam Hubbs <w.d.hubbs@gmail.com>2022-06-07 17:42:59 -0500
committerWilliam Hubbs <w.d.hubbs@gmail.com>2022-06-07 17:43:24 -0500
commit399200e24881c5a44cf07cac044b9f1856a9c9cc (patch)
treeed6c7c60912007cd4b7a3b4a4f404a05f9a5e196 /NEWS.md
parentffa74433958c38d1503a5d3808086862125eb581 (diff)
add note about seedrng to news
Diffstat (limited to 'NEWS.md')
-rw-r--r--NEWS.md10
1 files changed, 10 insertions, 0 deletions
diff --git a/NEWS.md b/NEWS.md
index a4535544..ed1b8e44 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -31,6 +31,16 @@ A no-new-privs option has been added to start-stop-daemon and
supervise-daemon. This sets the NO_NEW_PRIVS flag to apply to the
daemon.
+On Linux, the service that seeds the random number generator has been
+renamed from urandom to seedrng. This means that when you upgrade to
+this version, if urandom is in your boot runlevel, you must add seedrng.
+This can be done by issuing the following commands:
+
+```
+# rc-update add seedrng boot
+# rc-update del urandom boot
+```
+
## OpenRC 0.44
This version is the first to use a meson-based build system.