This commit is contained in:
2025-05-23 08:57:05 -04:00
parent bd57e6d6d4
commit 73a4c17df0
+6 -2
View File
@@ -6,7 +6,7 @@
ansible.builtin.shell:
cmd: ls -l
chdir: /tmp
- name: Install a list of packages
ansible.builtin.apt:
pkg:
@@ -14,10 +14,14 @@
- curl
- gnupg
- name: Add key
- name: Get GPG key
ansible.builtin.shell:
cmd: curl -fsSL https://bazel.build/bazel-release.pub.gpg | gpg --dearmor >bazel-archive-keyring.gpg
- name: Get GPG key
ansible.builtin.shell:
cmd: mv bazel-archive-keyring.gpg /usr/share/keyrings
# - name: Update all installed packages using APT module
# apt:
# name: '*'