From 8e5b1fef27fa715e9ff8ef0130ada4869f8258e6 Mon Sep 17 00:00:00 2001 From: Scott Moser Date: Mon, 9 Sep 2013 17:09:43 -0400 Subject: add support for reading random_seed on azure also. --- cloudinit/sources/DataSourceAzure.py | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'cloudinit/sources') diff --git a/cloudinit/sources/DataSourceAzure.py b/cloudinit/sources/DataSourceAzure.py index 66d7728b..7c50de4c 100644 --- a/cloudinit/sources/DataSourceAzure.py +++ b/cloudinit/sources/DataSourceAzure.py @@ -106,6 +106,14 @@ class DataSourceAzureNet(sources.DataSource): if found == ddir: LOG.debug("using files cached in %s", ddir) + rseedf = "/sys/firmware/acpi/tables/OEM0" + if os.path.isfile(rseedf): + try: + with open(rseedf, "rb") as fp: + self.metadata['random_seed'] = fp.read() + except: + LOG.warn("random seed '%s' existed but read failed", rseedf) + # now update ds_cfg to reflect contents pass in config usercfg = util.get_cfg_by_path(self.cfg, DS_CFG_PATH, {}) self.ds_cfg = util.mergemanydict([usercfg, self.ds_cfg]) -- cgit v1.2.3