about summary refs log tree commit diff
path: root/core-services
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2022-03-25 23:43:03 -0600
committerMichael Aldridge <aldridge.mac@gmail.com>2022-03-26 00:49:27 -0500
commitb5a9f57837d949f42d39066576c6a0bcdbdb8e37 (patch)
tree139d76b59d3aa4231c69346b05c18f84b5ee7978 /core-services
parent2b97bc31e88bd40496da3cb1dcd1a86c75b6fc84 (diff)
downloadrunit-void-b5a9f57837d949f42d39066576c6a0bcdbdb8e37.tar.gz
runit-void-b5a9f57837d949f42d39066576c6a0bcdbdb8e37.tar.xz
runit-void-b5a9f57837d949f42d39066576c6a0bcdbdb8e37.zip
Print message when seeding RNG
Diffstat (limited to 'core-services')
-rw-r--r--core-services/05-misc.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/core-services/05-misc.sh b/core-services/05-misc.sh
index 3468e9c..d63ce6b 100644
--- a/core-services/05-misc.sh
+++ b/core-services/05-misc.sh
@@ -4,6 +4,7 @@ install -m0664 -o root -g utmp /dev/null /run/utmp
 halt -B  # for wtmp
 
 if [ -z "$VIRTUALIZATION" ]; then
+    msg "Seeding random number generator..."
     seedrng || true
 fi