diff options
author | William Hubbs <w.d.hubbs@gmail.com> | 2022-03-30 11:15:13 -0500 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2022-03-30 22:07:35 -0500 |
commit | 0fb11190fa5911f6f9c20c38e74a664826157a34 (patch) | |
tree | 29649ac0c1724e0cb7c9d9e823587fbd5798d55f /tools/meson_runlevels.sh | |
parent | df18158e60dc6bfe9a77ac7d1b48417f808f5b11 (diff) |
add seedrng service for Linux
This moves urandom to *bsd only and adds seedrng as a separate service
for Linux.
This fixes #510
Diffstat (limited to 'tools/meson_runlevels.sh')
-rwxr-xr-x | tools/meson_runlevels.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/meson_runlevels.sh b/tools/meson_runlevels.sh index e24c2e2e..1473d4e2 100755 --- a/tools/meson_runlevels.sh +++ b/tools/meson_runlevels.sh @@ -24,11 +24,11 @@ case "${os}" in ;; esac -boot="bootmisc fsck hostname localmount loopback root swap sysctl urandom" +boot="bootmisc fsck hostname localmount loopback root swap sysctl" if [ "${net}" = yes ]; then boot="${boot} network staticroute" fi -boot_BSD="hostid newsyslog savecore syslogd" +boot_BSD="hostid newsyslog savecore syslogd urandom" case "${os}" in DragonFly) @@ -39,7 +39,7 @@ case "${os}" in ;; Linux) boot="${boot} binfmt hwclock keymaps modules mtab procfs - save-keymaps save-termencoding termencoding" + save-keymaps save-termencoding seedrng termencoding" ;; NetBSD) boot="${boot} ${boot_BSD} devdb swap-blk tys wscons" |