summaryrefslogtreecommitdiff
path: root/cloudinit
diff options
context:
space:
mode:
authorJoshua Harlow <harlowja@gmail.com>2013-09-08 22:36:28 -0700
committerJoshua Harlow <harlowja@gmail.com>2013-09-08 22:36:28 -0700
commite56659253c4284be4c78d373d3f0a1deab9bd201 (patch)
tree8fa2772838a29b9778bce682cbd8f230d7be122e /cloudinit
parent2ee2d10a042c96160e4745431d1d0c25904b5d88 (diff)
downloadvyos-cloud-init-e56659253c4284be4c78d373d3f0a1deab9bd201.tar.gz
vyos-cloud-init-e56659253c4284be4c78d373d3f0a1deab9bd201.zip
Add test + remove jsonschema (for now)
Diffstat (limited to 'cloudinit')
-rw-r--r--cloudinit/config/cc_seed_random.py53
1 files changed, 3 insertions, 50 deletions
diff --git a/cloudinit/config/cc_seed_random.py b/cloudinit/config/cc_seed_random.py
index 592d253f..22a31f29 100644
--- a/cloudinit/config/cc_seed_random.py
+++ b/cloudinit/config/cc_seed_random.py
@@ -19,64 +19,18 @@
import base64
from StringIO import StringIO
-import jsonschema
-from jsonschema import exceptions as js_exc
-
-from cloudinit import exceptions as exc
from cloudinit.settings import PER_INSTANCE
from cloudinit import util
frequency = PER_INSTANCE
-schema = {
- 'type': 'object',
- 'properties': {
- "random_seed": {
- "type": "object",
- "oneOf": [
- {"$ref": "#/definitions/random_seed"},
- ],
- },
- },
- "required": ["random_seed"],
- "additionalProperties": True,
- "definitions": {
- 'random_seed': {
- 'type': 'object',
- "properties" : {
- 'data': {
- 'type': "string",
- },
- 'file': {
- 'type': 'string',
- },
- 'encoding': {
- "enum": ["base64", 'gzip', 'b64', 'gz', ''],
- },
- },
- "additionalProperties": True,
- },
- },
-}
-
-
-def validate(cfg):
- """Method that can be used to ask if the given configuration will be
- accepted as valid by this module, without having to actually activate this
- module."""
- if not cfg or "random_seed" not in cfg:
- return
- try:
- jsonschema.validate(cfg, schema)
- except js_exc.ValidationError as e:
- raise exc.FormatValidationError("Invalid configuration: %s" % str(e))
def _decode(data, encoding=None):
- if not encoding:
- return data
if not data:
return ''
- if encoding.lower() in ['base64', 'b64']:
+ if not encoding or encoding.lower() in ['raw']:
+ return data
+ elif encoding.lower() in ['base64', 'b64']:
return base64.b64decode(data)
elif encoding.lower() in ['gzip', 'gz']:
return util.decomp_gzip(data, quiet=False)
@@ -90,7 +44,6 @@ def handle(name, cfg, cloud, log, _args):
"no 'random_seed' configuration found"), name)
return
- validate(cfg)
my_cfg = cfg['random_seed']
seed_path = my_cfg.get('file', '/dev/urandom')
seed_buf = StringIO()