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 1C900284685 for ; Mon, 14 Apr 2025 17:05:49 +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=1744650350; cv=none; b=Qo6DG31kp4UMedrjGn8tA0dpNNKWKmOXvSLFwQssCDkxGqQg6LdZo7oTmRhkQsSnez/90KUBxmX7bPYwvRAn/K2kxAIu0IYgfKl07cql+LaIMg5YD3Hx54LH5knqZ+idpMG0qijx3fMnmE6L0B9ZdoZ8M3WgAjE/M7a/RzrEji0= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1744650350; c=relaxed/simple; bh=ewyECTo8ELeY8wW8W4GsJGpQjmqwUfPdcc71jxvL4SA=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=WtDK9RnlO/CImX9NYLkBU3VBNcrI6ldK7asb4156jC/3PQ6qTBPbvV0eEDclR6sZ3Ze0dajK2uo5KyOJzvfuBHOWnIvrjAJQql1VQlxsVd2Pc3nlNRTkCocEfY10Naqh/qZ26q01MamU379s0x+zUkYif/UHh3P9viyPCcUgM/k= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=N36R45XY; 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="N36R45XY" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 3CBCEC4CEEC; Mon, 14 Apr 2025 17:05:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1744650349; bh=ewyECTo8ELeY8wW8W4GsJGpQjmqwUfPdcc71jxvL4SA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=N36R45XYQS6OlZmPCxX4BOM8LdMYceu9smBQd2vsfqvcO0k1j8J4oP6qtyt6koWBe Cs7ph63toVpzZtobS7LgwDa8OfyejXZFBtt9UFd9eLpn5flQd6jhLoHNczvWf1mX0i lfg436WMvCePtOqOPHNtGQWUvzo3Nf8TID2jIPxH8sFRj7CSxb4FPFTxPiLcz3m2Pi 2R3TdAbA8G5mwwqLW1sgoWhj3wWZvtw9/8t9QfwEMdwc6ciHR9pTMdTFktmy21Lumk BC0ztN+fwig/dosQ256lsTqA4tNhBba+3JBa57cRIEhbO4dZFNZbyqNrCAAtnAul0o mKJaeh5iG4kUg== From: cel@kernel.org To: Cc: Chuck Lever , Daniel Gomez Subject: [PATCH v2 1/4] guestfs: Fix definition of guestfs_storage_dir Date: Mon, 14 Apr 2025 13:05:43 -0400 Message-ID: <20250414170546.1995982-2-cel@kernel.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250414170546.1995982-1-cel@kernel.org> References: <20250414170546.1995982-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 {{ kdevops_storage_pool_path }} already ends with "/kdevops", so remove that string from the end of guestfs_storage_dir to ensure the permissions check is examining the correct directory. Reviewed-by: Daniel Gomez Signed-off-by: Chuck Lever --- kconfigs/Kconfig.guestfs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kconfigs/Kconfig.guestfs b/kconfigs/Kconfig.guestfs index d309436fa7c9..460ee703fd68 100644 --- a/kconfigs/Kconfig.guestfs +++ b/kconfigs/Kconfig.guestfs @@ -8,7 +8,7 @@ config STORAGE_POOL_PATH config GUESTFS_STORAGE_DIR string output yaml - default "{{ kdevops_storage_pool_path }}/kdevops/guestfs" + default "{{ kdevops_storage_pool_path }}/guestfs" config GUESTFS_BASE_IMAGE_DIR string -- 2.49.0