Current File : //lib/python2.7/site-packages/cloudinit/config/cc_seed_random.pyo |
�
oB�]c @ s� d Z d d l Z d d l Z d d l m Z d d l m Z d d l m Z d d l m
Z
e Z e j e
� Z d d � Z d d � Z d � Z d S(
s
Seed Random
-----------
**Summary:** provide random seed data
Since all cloud instances started from the same image will produce very similar
data when they are first booted, as they are all starting with the same seed
for the kernel's entropy keyring. To avoid this, random seed data can be
provided to the instance either as a string or by specifying a command to run
to generate the data.
Configuration for this module is under the ``random_seed`` config key. The
``file`` key specifies the path to write the data to, defaulting to
``/dev/urandom``. Data can be passed in directly with ``data``, and may
optionally be specified in encoded form, with the encoding specified in
``encoding``.
.. note::
when using a multiline value for ``data`` or specifying binary data, be
sure to follow yaml syntax and use the ``|`` and ``!binary`` yaml format
specifiers when appropriate
Instead of specifying a data string, a command can be run to generate/collect
the data to be written. The command should be specified as a list of args in
the ``command`` key. If a command is specified that cannot be run, no error
will be reported unless ``command_required`` is set to true.
For example, to use ``pollinate`` to gather data from a
remote entropy server and write it to ``/dev/urandom``, the following could be
used::
random_seed:
file: /dev/urandom
command: ["pollinate", "--server=http://local.polinate.server"]
command_required: true
**Internal name:** ``cc_seed_random``
**Module frequency:** per instance
**Supported distros:** all
**Config keys**::
random_seed:
file: <file>
data: <random string>
encoding: <raw/base64/b64/gzip/gz>
command: [<cmd name>, <arg1>, <arg2>...]
command_required: <true/false>
i����N( t BytesIO( t log( t PER_INSTANCE( t utilc C s� | s
d S| s# | j � d
k r0 t j | � S| j � d k rO t j | � S| j � d k rz t j | d t d d �St d | � � d S(
Nt t rawt base64t b64t gzipt gzt quiett decodes Unknown random_seed encoding: %s( R ( s base64R ( R R ( t lowerR t encode_textR t b64decodet decomp_gzipt Falset Nonet IOError( t datat encoding( ( sC /usr/lib/python2.7/site-packages/cloudinit/config/cc_seed_random.pyt _decodeK s
c C s� | r | r t d � � n | s3 t j d � d S| d } t j | � s� | rm t d j d | � � � q� t j d | � d Sn t j | d | d t �d S( Ns"