diff options
author | Dermot Bradley <dermot_bradley@yahoo.com> | 2022-07-06 19:41:37 +0100 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2022-11-08 16:53:23 +0000 |
commit | c9391c7f47a81703460dc309da7d1e75ebfe6963 (patch) | |
tree | 366bdca74c081fb0f29e66f7959cb9d0e0d044dd | |
parent | ad51d8de8cfd0eb481b52a130f4ba21c8bca0bf9 (diff) | |
download | alpine-conf-c9391c7f47a81703460dc309da7d1e75ebfe6963.zip |
setup-alpine: change urandom references to seedrng
openrc 0.45 replaced the /etc/init.d/urandom script with
/etc/init.d/seedrng. Change setup-alpine to enable this
script.
-rw-r--r-- | setup-alpine.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setup-alpine.in b/setup-alpine.in index 2f4e13a..06f5968 100644 --- a/setup-alpine.in +++ b/setup-alpine.in @@ -180,7 +180,7 @@ if [ -z "$quick" ]; then fi rc-update --quiet add networking boot -rc-update --quiet add urandom boot +rc-update --quiet add seedrng boot || rc-update --quiet add urandom boot svc_list="cron crond" if [ -d /sys/firmware/acpi ]; then # Only enable acpid for systems with ACPI |