From 51c470cdf1d6ea2b35a4413b728a8a5cacb8fb2d Mon Sep 17 00:00:00 2001 From: Wendell Jones Date: Fri, 23 May 2025 09:02:41 -0400 Subject: [PATCH] update --- beszel_install.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/beszel_install.yaml b/beszel_install.yaml index 0d18643..714a51c 100644 --- a/beszel_install.yaml +++ b/beszel_install.yaml @@ -18,10 +18,14 @@ ansible.builtin.shell: cmd: curl -fsSL https://bazel.build/bazel-release.pub.gpg | gpg --dearmor >bazel-archive-keyring.gpg - - name: Get GPG key + - name: Move GPG key ansible.builtin.shell: cmd: mv bazel-archive-keyring.gpg /usr/share/keyrings + - name: Add Key and repo to system + ansible.builtin.shell: + cmd: echo 'deb [arch=amd64 signed-by=/usr/share/keyrings/bazel-archive-keyring.gpg] https://storage.googleapis.com/bazel-apt stable jdk1.8' > /etc/apt/sources.list.d/bazel.list + # - name: Update all installed packages using APT module # apt: # name: '*'