From b1de7fa20a43f366863d09217d5c4b07034fd174 Mon Sep 17 00:00:00 2001 From: Jephte CLAIN Date: Fri, 18 Apr 2014 09:05:22 +0400 Subject: [PATCH] =?UTF-8?q?afficher=20l'op=C3=A9ration=20effectu=C3=A9e?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SVirtualBox | 2 ++ 1 file changed, 2 insertions(+) diff --git a/SVirtualBox b/SVirtualBox index 85ca4b3..ff0e61b 100755 --- a/SVirtualBox +++ b/SVirtualBox @@ -112,6 +112,7 @@ $(array_join rvms " fi if [ -n "$vm" ]; then + estep "Démarrage de $vm${headless:+ en tâche de fond}" VBoxManage -q startvm ${headless:+--type headless} "$vm" "$@" else ewarn "Aucune VM à démarrer n'a été trouvée" @@ -123,6 +124,7 @@ elif [ "$action" == stop ]; then fi if [ -n "$vm" ]; then + estep "Arrêt de $vm avec la méthode $stopaction" VBoxManage -q controlvm "$vm" "$stopaction" fi