From 4f78716bb8cb06ccf0988b45282d0ada08ad1af6 Mon Sep 17 00:00:00 2001 From: MarcoIeni <11428655+MarcoIeni@users.noreply.github.com> Date: Wed, 29 Jul 2026 11:25:03 +0200 Subject: [PATCH] add restart command --- justfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/justfile b/justfile index ee17739..4eb2cc3 100644 --- a/justfile +++ b/justfile @@ -19,6 +19,9 @@ start: stop: -limactl stop "{{ vm }}" +# Reboots the guest OS without recreating the VM or deleting its disk data. +restart: stop start + delete: stop limactl delete --force "{{ vm }}"