From fcb1f461c082840da6e54ecb9ead91431dc6cf81 Mon Sep 17 00:00:00 2001 From: Faustin Lammler Date: Sat, 30 Oct 2021 12:53:30 +0200 Subject: [PATCH] Remove sudo dependency The sudo dependency should not be needed because sudo escalation is managed by Ansible. --- tasks/setup-Debian.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/setup-Debian.yml b/tasks/setup-Debian.yml index cb1645b..cc444ca 100644 --- a/tasks/setup-Debian.yml +++ b/tasks/setup-Debian.yml @@ -39,7 +39,7 @@ - name: Add Docker apt key (alternative for older systems without SNI). shell: > - curl -sSL {{ docker_apt_gpg_key }} | sudo apt-key add - + curl -sSL {{ docker_apt_gpg_key }} | apt-key add - args: warn: false when: add_repository_key is failed