From b6530bfb7de4ad254ca66d2779fcd611fb6428ca Mon Sep 17 00:00:00 2001 From: Jeff Geerling Date: Fri, 28 Feb 2020 09:30:05 -0600 Subject: [PATCH] Fixes #188: Remove pipefail option from shell command on Debian. --- tasks/setup-Debian.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tasks/setup-Debian.yml b/tasks/setup-Debian.yml index 97a0a27..21dc204 100644 --- a/tasks/setup-Debian.yml +++ b/tasks/setup-Debian.yml @@ -27,8 +27,7 @@ when: add_repository_key is failed - name: Add Docker apt key (alternative for older systems without SNI). - shell: | - set -o pipefail + shell: > curl -sSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - args: warn: false