Skip to content

Commit

Permalink
Merge pull request #233 from IntelLabs/fix/examples_pipefail
Browse files Browse the repository at this point in the history
examples: use bash to unpack GPG
  • Loading branch information
Wenzel authored Sep 13, 2023
2 parents 57cb724 + 8e3e149 commit 20c63da
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
- Security fixes (#215, #217)
- Switch QEMU revision pinning to a tag instead of a branch (#214)
- `kafl.targets`: simplify linux kernel tutorial and use predefined load path for kAFL configuration ([`kafl.targets#23`](https://github.com/IntelLabs/kafl.targets/pull/23))
- examples role: fix shell used to unpacking GPG key (#233)

# 📖 Documentation

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@

- name: Unpack GPG key
ansible.builtin.shell: set -o pipefail && cat /tmp/hashicorp.key | gpg --batch --yes --dearmor -o /usr/share/keyrings/hashicorp-archive-keyring.gpg
args:
executable: /bin/bash
become: true

- name: Remove temp file
Expand Down

0 comments on commit 20c63da

Please sign in to comment.