blob: a09153a5551bd69e8860d481d5c268791e58a637 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#!/sbin/runscript
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
depend() {
need localmount
}
start() {
[ -c /dev/urandom ] || return
if [ -f /var/run/random-seed ] ; then
cat /var/run/random-seed > /dev/urandom
fi
if ! rm -f /var/run/random-seed ; then
ewarn "Skipping /var/run/random-seed initialization (ro root?)"
return 0
fi
ebegin "Initializing random number generator"
umask 077
dd if=/dev/urandom of=/var/run/random-seed count=1 2>/dev/null
eend $? "Error initializing random number generator"
umask 022
}
stop() {
ebegin "Saving random seed"
# Carry a random seed from shut-down to start-up;
# see documentation in linux/drivers/char/random.c
umask 077
dd if=/dev/urandom of=/var/run/random-seed count=1 2>/dev/null
eend $? "Failed to save random seed"
}
# vim:ts=4
|