aetherscale

[unmaintained] code for a cloud provider tutorial
Log | Files | Refs | README | LICENSE

commit 43632e73cc91434ae32069ccf49a6275c09c78ae
parent ffcb785b7e447120a2fb45f3bd110476edbac320
Author: Stefan Koch <programming@stefan-koch.name>
Date:   Sun, 31 Jan 2021 11:48:46 +0100

add missing enabling of VM in systemd

Diffstat:
Maetherscale/computing.py | 1+
Aaetherscale/paths.py | 0
2 files changed, 1 insertion(+), 0 deletions(-)

diff --git a/aetherscale/computing.py b/aetherscale/computing.py @@ -249,6 +249,7 @@ class ComputingHandler: unit_name, qemu_config, network_setup_scripts, network_teardown_scripts) self.service_manager.start_service(unit_name) + self.service_manager.enable_service(unit_name) logging.info(f'Started VM "{vm_id}"') yield { diff --git a/aetherscale/paths.py b/aetherscale/paths.py