Skip to content

Commit

Permalink
Cleanup tee
Browse files Browse the repository at this point in the history
  • Loading branch information
tersmitten committed Nov 27, 2024
1 parent 6c691b7 commit d218d79
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@ Set up [vagrant](https://www.vagrantup.com/) in Debian-like systems.

#### Requirements

None
* `software-properties-common` (will be installed)
* `dirmngr` (will be installed)
* `apt-transport-https` (will be installed)
* `wget` (will be installed)

#### Variables

Expand Down
2 changes: 1 addition & 1 deletion tasks/repository.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

- name: repository | (keyring) file | download # noqa command-instead-of-module risky-shell-pipe
ansible.builtin.shell: >
wget -O- {{ vagrant_keyring_src }} | gpg --dearmor | tee {{ vagrant_keyring_dst }} > /dev/null
wget -O- {{ vagrant_keyring_src }} | gpg --dearmor --yes --output {{ vagrant_keyring_dst }}
args:
creates: "{{ vagrant_keyring_dst }}"
tags:
Expand Down
1 change: 0 additions & 1 deletion vars/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ vagrant_dependencies_pre:
- dirmngr
- apt-transport-https
- wget
- coreutils

vagrant_dependencies:
- vagrant

0 comments on commit d218d79

Please sign in to comment.