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 645B51D63E1 for ; Mon, 19 May 2025 16:21:33 +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=1747671694; cv=none; b=NdgwFkJUu3tn5RWH5qnhtuTJ2XLj89hqJY5C9vYhGt1vli6nETRTIoBh3V3Pd88FRNFoZBgxp/b0Sugvi9YVybQ3SaBY/EETE2gG7gOndAzEOjmn+7bb9Du69e+3Ya+s1egB2Sz/Q5NkEX8FXdGqDdvyr81XEnjf1B+pEtfdHDs= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1747671694; c=relaxed/simple; bh=PWl03qNl9T3rshmHjzde+LQLtWdfe/BHPl/CH7qdap0=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=mrWOBWfBlqtqL0Fy1Q9aY8KEmUyMeSsuoBHt1Tu8j+xSpwqvznnpyFy02g7vrGuK8wOPcG5LV22h3rQHCnTNMvxibT5BbXG+X3enBHkMzbcFuk16HZ30KBU9vhUcSqOGMzBdpTELEbJnnXvVkV6y4cP8rK+WmGkJfdEy2QRHWw8= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=GvasEkNZ; 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="GvasEkNZ" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 88E81C4CEE4; Mon, 19 May 2025 16:21:33 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1747671693; bh=PWl03qNl9T3rshmHjzde+LQLtWdfe/BHPl/CH7qdap0=; h=From:To:Cc:Subject:Date:From; b=GvasEkNZsXctZXeXF7MbV8F7saklmamFB0oTdS0xL+iaCr1n5gSNq8+yWkHtoJJJ2 C06UN/z59fP0tPxABEgVozVSkA5w7rImccgIvyltFFuguwyLYZl/iCvGMrh4S/VYxN IJbcPVnpEYxxrLdHhNTja5zoZDCxpo4fZbCt9+WR0oH9DAEBnxY65LgrK4zoDuZvX6 NVq/0aR4QSllPZZmGE5X2ySmHsVIf7MsvVef6iuqPBhcGHSldzvk4tK/q7U3x9VVb7 lrvYHBzlHsAx4THBAFelR++AVD2vPMmNJHFprloPdWMM5C/7CrwIgPKwyh4984pBdY +iEbedv+GZHbQ== From: cel@kernel.org To: Cc: Daniel Gomez , Chuck Lever Subject: [PATCH v2 0/4] Remove the bootlinux-local role Date: Mon, 19 May 2025 12:21:27 -0400 Message-ID: <20250519162131.381359-1-cel@kernel.org> X-Mailer: git-send-email 2.49.0 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 The bootlinux-local role simply installs the bootlinux dependencies on the Ansible controller when bootlinux_9p is set. There doesn't seem to be a good reason that cannot be done via an extra step in bootlinux. This version needs some testing, which I can get to later today. Changes since v1: - Address Daniel's review comments and clarify patch descriptions Chuck Lever (4): bootlinux: Remove the 'linux' tag bootlinux: Modernize install-deps/main.yml bootlinux: Switch to import_tasks for install-deps bootlinux: Fold bootlinux-local into the bootlinux role playbooks/bootlinux-local.yml | 5 - .../roles/bootlinux-local/defaults/main.yml | 3 - .../roles/bootlinux-local/tasks/install-deps | 1 - .../roles/bootlinux-local/tasks/main.yml | 19 ---- .../tasks/install-deps/debian/main.yml | 2 - .../bootlinux/tasks/install-deps/main.yml | 21 +++-- playbooks/roles/bootlinux/tasks/main.yml | 92 ++++++++++--------- .../bootlinux/tasks/update-grub/debian.yml | 2 +- .../bootlinux/tasks/update-grub/install.yml | 12 +-- .../bootlinux/tasks/update-grub/redhat.yml | 2 +- .../bootlinux/tasks/update-grub/suse.yml | 2 +- workflows/linux/Makefile | 3 - 12 files changed, 72 insertions(+), 92 deletions(-) delete mode 100644 playbooks/bootlinux-local.yml delete mode 100644 playbooks/roles/bootlinux-local/defaults/main.yml delete mode 120000 playbooks/roles/bootlinux-local/tasks/install-deps delete mode 100644 playbooks/roles/bootlinux-local/tasks/main.yml -- 2.49.0