We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fef0083 commit aa9c4a8Copy full SHA for aa9c4a8
netplan_cli/configmanager.py
@@ -89,6 +89,7 @@ def parse(self, extra_config=None):
89
# Convoluted way to dump the parsed config to the logs...
90
with tempfile.TemporaryFile() as tmp:
91
self.np_state._dump_yaml(output_file=tmp)
92
+ tmp.seek(0)
93
logging.debug("Merged config:\n{}".format(tmp.read()))
94
95
return self.np_state
0 commit comments