aboutsummaryrefslogtreecommitdiff
path: root/libexec/save-entropy
diff options
context:
space:
mode:
authorDoug Barton <dougb@FreeBSD.org>2005-04-11 02:07:33 +0000
committerDoug Barton <dougb@FreeBSD.org>2005-04-11 02:07:33 +0000
commit2005d17979e4bbb9d91724466f3d3b97aa05abca (patch)
treed5629b1d6ded9c7bd2c35b94279822fb24e6bbef /libexec/save-entropy
parentd02239a3af83fc81b339ccb88bd62482228fe010 (diff)
downloadsrc-2005d17979e4bbb9d91724466f3d3b97aa05abca.tar.gz
src-2005d17979e4bbb9d91724466f3d3b97aa05abca.zip
The script mistakenly ignores the entropy_save_sz variable from
rc.conf[.local]. Fix this, and leave the default as 2048. Update the copyright year to include the present. Update the assignment of the copyright to be me personally, instead of "The FreeBSD Project" which is not a legal entity, and therefore not a proper assignee. My intention remains the same however, that this code continue to be BSD licensed, and freely available to anyone that wants it under those terms. PR: conf/75722 Submitted by: Nicolas Rachinsky <list@rachinsky.de>
Notes
Notes: svn path=/head/; revision=144889
Diffstat (limited to 'libexec/save-entropy')
-rwxr-xr-xlibexec/save-entropy/save-entropy.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/save-entropy/save-entropy.sh b/libexec/save-entropy/save-entropy.sh
index 82b96ca56912..96f1a819be59 100755
--- a/libexec/save-entropy/save-entropy.sh
+++ b/libexec/save-entropy/save-entropy.sh
@@ -1,6 +1,6 @@
#!/bin/sh
#
-# Copyright (c) 2001 The FreeBSD Project
+# Copyright (c) 2001-2005 Douglas Barton, DougB@FreeBSD.org
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
@@ -86,7 +86,7 @@ it will not be rotated. Entropy file harvesting is aborted."
done
dd if=/dev/random of="${entropy_dir}/saved-entropy.1" \
- bs=2048 count=1 2> /dev/null
+ bs="$entropy_save_sz" count=1 2> /dev/null
exit 0