diff options
author | Bill Nottingham <notting@redhat.com> | 1999-02-04 19:11:11 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 1999-02-04 19:11:11 +0000 |
commit | ae6c4e57c4eda13956a9e5efe0956fd5c90e3a7c (patch) | |
tree | 3c12193fed2a085b512af8cc30d7865adfb10186 /rc.d/init.d/random | |
parent | e8d2f95c03d1df94ca6ab9bab11f0f1d8e8c5893 (diff) | |
download | initscripts-ae6c4e57c4eda13956a9e5efe0956fd5c90e3a7c.tar initscripts-ae6c4e57c4eda13956a9e5efe0956fd5c90e3a7c.tar.gz initscripts-ae6c4e57c4eda13956a9e5efe0956fd5c90e3a7c.tar.bz2 initscripts-ae6c4e57c4eda13956a9e5efe0956fd5c90e3a7c.tar.xz initscripts-ae6c4e57c4eda13956a9e5efe0956fd5c90e3a7c.zip |
fixes
Diffstat (limited to 'rc.d/init.d/random')
-rwxr-xr-x | rc.d/init.d/random | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rc.d/init.d/random b/rc.d/init.d/random index 27f2abd4..57b971f9 100755 --- a/rc.d/init.d/random +++ b/rc.d/init.d/random @@ -22,7 +22,7 @@ case "$1" in else touch $random_seed fi - action -n "Initializing random number generator" /bin/true + action "Initializing random number generator" /bin/true chmod 600 $random_seed dd if=/dev/urandom of=$random_seed count=1 bs=512 2>/dev/null touch /var/lock/subsys/random @@ -33,7 +33,7 @@ case "$1" in # Save 512 bytes, which is the size of the entropy pool touch $random_seed chmod 600 $random_seed - action -n "Saving random seed" dd if=/dev/urandom of=$random_seed count=1 bs=512 2>/dev/null + action "Saving random seed" dd if=/dev/urandom of=$random_seed count=1 bs=512 2>/dev/null rm -f /var/lock/subsys/random ;; |