diff --git a/guest-agent/src/guest_api_service.rs b/guest-agent/src/guest_api_service.rs index 2f905778..6af35136 100644 --- a/guest-agent/src/guest_api_service.rs +++ b/guest-agent/src/guest_api_service.rs @@ -52,8 +52,6 @@ impl GuestApiRpc for GuestApiHandler { async fn shutdown(self) -> Result<()> { tokio::spawn(async move { - notify_host("shutdown.progress", "stopping app").await.ok(); - perr(cmd!(systemctl stop app-compose)); notify_host("shutdown.progress", "powering off").await.ok(); perr(cmd!(systemctl poweroff)); });