From 3a685d51066b72257ddf328985ebd8109602d7a1 Mon Sep 17 00:00:00 2001 From: strNophix Date: Wed, 23 Feb 2022 15:45:24 +0100 Subject: [PATCH] Added forced removal of vm's in rm_customer.sh --- rm_customer.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rm_customer.sh b/rm_customer.sh index eca3d55..397355f 100755 --- a/rm_customer.sh +++ b/rm_customer.sh @@ -1,4 +1,4 @@ #!/usr/bin/env bash USER_DIR=./customers/$1 -(cd $USER_DIR && vagrant destroy) +(cd $USER_DIR && vagrant destroy -f) rm -rf $USER_DIR