diff options
author | Dustin Kirkland <kirkland@ubuntu.com> | 2014-03-03 16:44:31 -0500 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2014-03-03 16:44:31 -0500 |
commit | 2b35f6b814b7f30ceea1e8a58c928f2818bb2729 (patch) | |
tree | 11a927d595fbfa8e321e6d1b7e62c8d9fb937b2c /ChangeLog | |
parent | acfd6c50e4dc3de5e20cfabe6bac1569e43d3ff1 (diff) | |
download | vyos-cloud-init-2b35f6b814b7f30ceea1e8a58c928f2818bb2729.tar.gz vyos-cloud-init-2b35f6b814b7f30ceea1e8a58c928f2818bb2729.zip |
seed_random: support a 'command' to seed /dev/random
This extends 'random_seed' top level entry to include a 'command'
entry, that has the opportunity to then seed the random number generator.
Example config:
#cloud-config
random_seed:
command: ['dd', 'if=/dev/zero', 'of=/dev/random', 'bs=1M', 'count=10']
LP: #1286316
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -33,6 +33,8 @@ rather than relying on EC2 data in openstack metadata service. - SmartOS, AltCloud: disable running on arm systems due to bug (LP: #1243287, #1285686) [Oleg Strikov] + - Allow running a command to seed random, default is 'pollinate -q' + (LP: #1286316) [Dustin Kirkland] 0.7.4: - fix issue mounting 'ephemeral0' if ephemeral0 was an alias for a partitioned block device with target filesystem on ephemeral0.1. |