Send a warning notification if there is not enough RAM left to start a VM. Implements #329.

This commit is contained in:
grossmj
2015-10-12 15:57:37 -06:00
parent c700804014
commit ac75977ae0
8 changed files with 38 additions and 1 deletions

View File

@ -849,6 +849,9 @@ class QemuVM(BaseVM):
except OSError as e:
raise QemuError("Could not find free port for the Qemu monitor: {}".format(e))
# check if there is enough RAM to run
self.check_available_ram(self.ram)
self._command = yield from self._build_command()
command_string = " ".join(shlex.quote(s) for s in self._command)
try: