summaryrefslogtreecommitdiffstats
path: root/utils/lab-reconfiguration
diff options
context:
space:
mode:
authorLuke Hinds <lukehinds@gmail.com>2016-09-12 15:00:27 +0100
committerLuke Hinds <lukehinds@gmail.com>2016-09-12 15:00:27 +0100
commit149d3c385e7a58113ebbcae8d3a2c261aa840b3f (patch)
tree1969d20aaec61c778e97545685c9e55dec0d3067 /utils/lab-reconfiguration
parentebeaa913386df4c9ebb0110ffdcd298540b1b4d5 (diff)
Implements use of yaml.safe_load as per sec audit
Change-Id: I9b8d9746e8a3beebc1aff9f883dcec39928831d7 Signed-off-by: Luke Hinds <lukehinds@gmail.com>
Diffstat (limited to 'utils/lab-reconfiguration')
-rwxr-xr-xutils/lab-reconfiguration/reconfigUcsNet.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/lab-reconfiguration/reconfigUcsNet.py b/utils/lab-reconfiguration/reconfigUcsNet.py
index 45a72a398..4c08f3dc9 100755
--- a/utils/lab-reconfiguration/reconfigUcsNet.py
+++ b/utils/lab-reconfiguration/reconfigUcsNet.py
@@ -157,7 +157,7 @@ def read_yaml_file(yamlFile):
"""
# TODO: add check if vnic templates specified in file exist on UCS
with open(yamlFile, 'r') as stream:
- return yaml.load(stream)
+ return yaml.safe_load(stream)
def set_network(handle=None, yamlFile=None):