diff options
author | Julian Blake Kongslie <jblake@omgwallhack.org> | 2011-01-29 19:52:56 -0800 |
---|---|---|
committer | Julian Blake Kongslie <jblake@omgwallhack.org> | 2011-01-29 19:52:56 -0800 |
commit | 760e63b1024227d10c304af1fe2c083a5328983a (patch) | |
tree | 4ba13774300b25060327ebd092489e281ec911ff /libpiny/debian/libpiny-perl.postinst | |
parent | 73b09b3ad1dca72187bee4f83dd8185c39064b46 (diff) | |
download | piny-code-760e63b1024227d10c304af1fe2c083a5328983a.tar.gz piny-code-760e63b1024227d10c304af1fe2c083a5328983a.zip |
Use less-good random numbers.
Diffstat (limited to 'libpiny/debian/libpiny-perl.postinst')
-rwxr-xr-x | libpiny/debian/libpiny-perl.postinst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpiny/debian/libpiny-perl.postinst b/libpiny/debian/libpiny-perl.postinst index ba29e39..065289a 100755 --- a/libpiny/debian/libpiny-perl.postinst +++ b/libpiny/debian/libpiny-perl.postinst @@ -8,7 +8,7 @@ case "$1" in if [ ! -f /etc/libpiny.key ]; then umask 0177 - dd if=/dev/random of=/etc/libpiny.key bs=512 count=1 + dd if=/dev/urandom of=/etc/libpiny.key bs=512 count=1 fi ;; |