Allow meta-data to contain any yaml #3

Merged
PeterSurda merged 1 commits from PeterSurda/cloud-init-cherrypy:meta-data-yaml into master 2021-06-09 11:18:07 +00:00
1 changed files with 1 additions and 3 deletions

View File

@ -142,9 +142,7 @@ class CloudInitApp:
filepath = os.path.join(PATH, "data", data['local-hostname'], META_DATA_FILENAME)
if os.path.exists(filepath):
with open(filepath, "r") as metadata:
for line in metadata.readlines():
linesplit = list(map(lambda k: k.strip(), line.split(":")))
data[linesplit[0]] = linesplit[1]
data.update(yaml.safe_load(metadata))
cherrypy.response.headers['Content-Type'] = \
'text/yaml'