From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id ED65235A288 for ; Wed, 27 Aug 2025 14:28:44 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756304925; cv=none; b=jv4/eWhTjZAgtjxTZh4gywfcWrj1FTPa2stEeJ8hXddIRcvJ7DyiwL9UePVvXY7z0KvnUvJnx+nh8r58ueAa/l5I+CR9ltu2fAUb5sMzxR4Ou2If+BdNHSiXUefcLenMJpOiX3iA+5wSEmt/B8zzLTm2yw4j1Vq1Ef1kw4b2NKA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756304925; c=relaxed/simple; bh=pJKlWHb1EmDvFHrsVL0zWbSwOcYRjoPuOuBLK1EMftM=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=BfoN9rwxdgyjmODJdvjIWzi5GuzvH5PqHUWb70Y5INBvAciLnEMEdKiMu/Sl6uevI9cNrKJGU9cWidMx0M6yLcilu4fePjlvQYXY1cEoIzJV/tPOj9FdjHLVFxVpDZSywsrir6PuNpakofkU5EdwcxKY4YvyBTVaMiN2IHpoy/U= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=Z+Vb6TuZ; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="Z+Vb6TuZ" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 55144C4CEF0; Wed, 27 Aug 2025 14:28:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1756304924; bh=pJKlWHb1EmDvFHrsVL0zWbSwOcYRjoPuOuBLK1EMftM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Z+Vb6TuZzEVkX/62BBP7LyC848e3ip32BHBQABMRA/6XNies1RGZpM3pbThy1HSOE XfsCB+nUn43D3V9snRooia5xCeNWmzBpecNHZI2lIMNbHpFxtY8A40HNPoTJSz7XPw iSRznPxyvLX8YkOwicD2h1tNhRTgjvD3Q9aaJ3vPxEmpsRcmVqc4xZQpZ/iYjVzkKx PthQgDikj3AXVH5xrGha4a+PN7pJeVZMYB7XTnzSXfsjTtzo155O0cqT2oBiZx2B8r 3Yh5gFMVG3pXQ+xLZySU77C01RbXK5Lm936k2HHN+FTLmTS99V5o009Kco/KG5n1cV H4aP39w8Y1Rvw== From: Chuck Lever To: Cc: Chuck Lever Subject: [PATCH v1 23/26] guestfs: Don't run the 'destroy' tags on the controller Date: Wed, 27 Aug 2025 10:28:18 -0400 Message-ID: <20250827142832.2629291-24-cel@kernel.org> X-Mailer: git-send-email 2.51.0 In-Reply-To: <20250827142832.2629291-1-cel@kernel.org> References: <20250827142832.2629291-1-cel@kernel.org> Precedence: bulk X-Mailing-List: kdevops@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: Chuck Lever "make destroy" was skipping some important file removals, and removing other files that do not exist. Signed-off-by: Chuck Lever --- scripts/guestfs.Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/guestfs.Makefile b/scripts/guestfs.Makefile index bd03f58c4232..57d6e7065be6 100644 --- a/scripts/guestfs.Makefile +++ b/scripts/guestfs.Makefile @@ -96,6 +96,7 @@ PHONY += status_guestfs destroy_guestfs: $(Q)ansible-playbook $(ANSIBLE_VERBOSE) \ + --limit 'baseline:dev:service' \ playbooks/guestfs.yml \ --extra-vars=@./extra_vars.yaml \ --tags destroy -- 2.51.0