Skip to content

Commit

Permalink
use urandom, rather than random
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon Seymour (cloud) committed Jul 29, 2015
1 parent 8380b3e commit 3a9cf9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sphere-stack.sh
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ logs() {
}

pwgen() {
cat /dev/random | dd count=1 bs=256 2>/dev/null | openssl base64 | cut -c1-20 | head -1
cat /dev/urandom | dd count=1 bs=256 2>/dev/null | openssl base64 | cut -c1-20 | head -1
}

edit() {
Expand Down

0 comments on commit 3a9cf9d

Please sign in to comment.