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 7157F267721 for ; Wed, 9 Apr 2025 15:23:38 +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=1744212218; cv=none; b=RvEpioTsbinVqENXTEunSf4vqSG/+q7MZEWaPlNPL9+/M5uXFjte1F8pg0W38rOhbBSX4JvXVlVOowbNEU40e7MhYRHgzxpghgCVDLoMn0+q+zclgDwHWLUC1PVQEcqy0XReh1Ppdk9becsdqm2vO2W9uZ+UYrgaNgSEddszyGk= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1744212218; c=relaxed/simple; bh=WcR375GwkZE4qQ1F399Bn1oXvF/wzH0E1E7bNv5+LeA=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=JO1gMNQLGrvCdlyLcXcozWiaOJ80NJPrJo5H7tfMafOy2vidnvZNKy5sZAnn7JzzmzQfpmB+9eoi/uugwL4wvidGWY2R3BZjdwT097FJ9BcrBOyEZ4vPpu+43U3Vebe2F85LgTEiqJh5r/KVIW41X2QyHSlD7kZAjHrwRUaW1VM= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=BBRaUBvS; 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="BBRaUBvS" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 9761AC4CEE7; Wed, 9 Apr 2025 15:23:37 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1744212217; bh=WcR375GwkZE4qQ1F399Bn1oXvF/wzH0E1E7bNv5+LeA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=BBRaUBvSOaSPCZwE0T4zVRG0CtFproROvva9SYlvbR4MtFGRbFTA8tQSR2QVbIlQE xmnJsgAN4UvDqADxQT0r87mzZ6X9lDgHrgw7/6qbC8SR4/g972OYg36YChJPGIgthY A60dx46jZUSwE1a6nGOwDyIwUngIl0hnYxnj5v9uiuMy4DRCei76oT1yPfRKpMN1cX TZq/tO76/GOrX+3n9OmbqaTv81Fu2R54gwYO8IxvDQOPCi97D3gduQ4+KF8SISIoRV h6epKGzOypm2tYgLmOK4honA3tjXM7qftNE5J8HYPWEHWFsxkt9XllSwJ5xvucr708 Y1w2ntffsNReA== From: cel@kernel.org To: Cc: Chuck Lever Subject: [PATCH v2 1/2] guestfs: Fix definition of guestfs_storage_dir Date: Wed, 9 Apr 2025 11:23:34 -0400 Message-ID: <20250409152335.890665-2-cel@kernel.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250409152335.890665-1-cel@kernel.org> References: <20250409152335.890665-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 checking is looking for the correct directory. 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