diff options
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 363ffdf2..d5c6370a 100755 --- a/rc.d/init.d/random +++ b/rc.d/init.d/random @@ -23,7 +23,7 @@ case "$1" in else touch $random_seed fi - action "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 @@ -34,7 +34,7 @@ case "$1" in # Save 512 bytes, which is the size of the entropy pool touch $random_seed chmod 600 $random_seed - action "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 ;; |