summaryrefslogtreecommitdiff
path: root/cloudinit/util.py
diff options
context:
space:
mode:
Diffstat (limited to 'cloudinit/util.py')
-rw-r--r--cloudinit/util.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/cloudinit/util.py b/cloudinit/util.py
index 2931efbd..0773af69 100644
--- a/cloudinit/util.py
+++ b/cloudinit/util.py
@@ -335,6 +335,7 @@ def rand_str(strlen=32, select_from=None):
select_from = string.ascii_letters + string.digits
return "".join([random.choice(select_from) for _x in range(0, strlen)])
+
def rand_dict_key(dictionary, postfix=None):
if not postfix:
postfix = ""
@@ -344,6 +345,7 @@ def rand_dict_key(dictionary, postfix=None):
break
return newkey
+
def read_conf(fname):
try:
return load_yaml(load_file(fname), default={})