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 A47AC2356BD for ; Thu, 4 Sep 2025 15:15:40 +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=1756998940; cv=none; b=iw2hbrzxU9efrYjJxDS9Rz/gQcTZvxX6A1nVo4+eHmP7z0Ls3ALIlnizN6glXUn9HKbjf87UgkexhIkaF3wpJrPaPYYOMTSe1hdFjqYt94c8Kmg+PWADAJirXLax2pLnPcgq0gMGu96iXZUNm1qUA2PqOp26vTdqfeP4q00biZQ= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756998940; c=relaxed/simple; bh=/mrSK+QEQi7M0Rx0ZO+ZtLoHA/xI7o1sQgE5TXNY2cc=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=fBj1N1l5H9dDxWNm2aIC4bzAW60J1U9EQ7N0Ver4Kyt6BW2UcDm30gm1EuwVsKR+El1lyt2Ihe7bhPSN/6RZbjYy4mxwqIvSWvdkVKlcP3AfXK8iELOaBxg2/kAvFclDvxjWXAC9T5GbYxxFK/p0sRs25xU8yNmpLrzJ7TszQZ8= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=UyGJmDRR; 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="UyGJmDRR" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 38B8AC4CEF0; Thu, 4 Sep 2025 15:15:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1756998940; bh=/mrSK+QEQi7M0Rx0ZO+ZtLoHA/xI7o1sQgE5TXNY2cc=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=UyGJmDRRuU1ZqIrInHq0etLHrpd41scW3kC/pkD5Yz0IeFjnhjY4BFFTguIjYMRG3 zw1mk8Ydjuo/cZ80bG/3hHZBzwNKoUiv5kKn6VFbXWCFCnfdi+Otw5koL82c4B8SYV DwefJrCipD476AJFY9Nhqgp76b2mLc2z2/REzWoiMFPBV5/exInWUO2cfdm/eTl7Xa E88Un56/VL1heWEj37dtu8T6LdSYG0EkxeSJaIPlHKlnZmWXdI5vp2cr/QNqrskWoL 1aYyorb3DeFmsxy4G058JaVFEE0/TEkIFora/mb0nUhc6vd2abaxYcNjeam3mJve9S rLyTGYr/E6P3A== From: Chuck Lever To: Cc: Chuck Lever , Luis Chamberlain Subject: [PATCH v3 23/36] base_image: Skip "locales-all" package installation Date: Thu, 4 Sep 2025 11:15:11 -0400 Message-ID: <20250904151526.1596282-24-cel@kernel.org> X-Mailer: git-send-email 2.51.0 In-Reply-To: <20250904151526.1596282-1-cel@kernel.org> References: <20250904151526.1596282-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 This is handled later by the devconfig playbook, and only when a distribution needs it. Reviewed-by: Luis Chamberlain Signed-off-by: Chuck Lever --- playbooks/roles/base_image/templates/virt-builder.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playbooks/roles/base_image/templates/virt-builder.j2 b/playbooks/roles/base_image/templates/virt-builder.j2 index 7df4229405e7..138d06eede6b 100644 --- a/playbooks/roles/base_image/templates/virt-builder.j2 +++ b/playbooks/roles/base_image/templates/virt-builder.j2 @@ -11,7 +11,7 @@ mkdir {{ target_dir }} copy-in {{ guestfs_distro_source_and_dest_file }}:{{ target_dir }} {% endif %} -install sudo,qemu-guest-agent,python3,bash,locales-all +install sudo,qemu-guest-agent,python3,bash run-command useradd {{ kdevops_uid }} -s /bin/bash -m kdevops append-line /etc/sudoers.d/kdevops:kdevops ALL=(ALL) NOPASSWD: ALL edit /etc/default/grub:s/^GRUB_CMDLINE_LINUX_DEFAULT=.*/GRUB_CMDLINE_LINUX_DEFAULT="console=ttyS0"/ -- 2.51.0