diff options
author | Bill Nottingham <notting@redhat.com> | 2000-08-02 22:44:17 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2000-08-02 22:44:17 +0000 |
commit | 8c707066217b593d2af97d30062c94a18703687c (patch) | |
tree | 9a53f524779d62d822f389636584df63bb14db2d /rc.d/init.d/random | |
parent | 6d7fceb323c2ca6555d5aea91dfe857fda3290f2 (diff) | |
download | initscripts-8c707066217b593d2af97d30062c94a18703687c.tar initscripts-8c707066217b593d2af97d30062c94a18703687c.tar.gz initscripts-8c707066217b593d2af97d30062c94a18703687c.tar.bz2 initscripts-8c707066217b593d2af97d30062c94a18703687c.tar.xz initscripts-8c707066217b593d2af97d30062c94a18703687c.zip |
colons. Lots of colons. More colons than most gastrointestinal clinics.
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 42dce627..81c7a780 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 ;; |