diff options
author | Bill Nottingham <notting@redhat.com> | 2005-03-02 20:09:37 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2005-03-02 20:09:37 +0000 |
commit | a9e02bb3e63fa5d94ef063aec402617c454f7e5c (patch) | |
tree | 38221faad18178fe2592ca9d22e8ebde660b836e | |
parent | e95872bc3d9e915335ba8a82e97fb6987906b2dd (diff) | |
download | initscripts-a9e02bb3e63fa5d94ef063aec402617c454f7e5c.tar initscripts-a9e02bb3e63fa5d94ef063aec402617c454f7e5c.tar.gz initscripts-a9e02bb3e63fa5d94ef063aec402617c454f7e5c.tar.bz2 initscripts-a9e02bb3e63fa5d94ef063aec402617c454f7e5c.tar.xz initscripts-a9e02bb3e63fa5d94ef063aec402617c454f7e5c.zip |
fix check (#130350)
-rwxr-xr-x | rc.d/rc.sysinit | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit index 96962977..509047cb 100755 --- a/rc.d/rc.sysinit +++ b/rc.d/rc.sysinit @@ -511,7 +511,7 @@ chmod 600 /var/lib/random-seed dd if=/dev/urandom of=/var/lib/random-seed count=1 bs=512 2>/dev/null # Use the hardware RNG to seed the entropy pool, if available -[ -x /sbin/rngd -a -f /dev/hw_random ] && rngd +[ -x /sbin/rngd -a -c /dev/hw_random ] && rngd # Configure machine if necessary. if [ -f /.unconfigured ]; then |