From 34a72b68b757e0f1ac90fd6633ada4350a8a86ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thorben=20G=C3=BCnther?= <admin@xenrox.net> Date: Thu, 15 Jul 2021 23:54:27 +0200 Subject: [PATCH] install_arch: Use shell instead of command shell is like command but runs the command through a shell, so that piping will work. --- roles/install_arch/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/install_arch/tasks/main.yml b/roles/install_arch/tasks/main.yml index bf8c3838a..bc6049afa 100644 --- a/roles/install_arch/tasks/main.yml +++ b/roles/install_arch/tasks/main.yml @@ -165,7 +165,7 @@ template: src=sshd_config.j2 dest=/mnt/etc/ssh/sshd_config owner=root group=root mode=0644 - name: clean pacman cache - command: yes | chroot /mnt pacman -Scc + shell: yes | chroot /mnt pacman -Scc # noqa risky-shell-pipe ("Illegal option -o pipefail" in Hetzner's recovery environment (dash?)) register: chroot_pacman_clean_cache changed_when: "chroot_pacman_clean_cache.rc == 0" -- GitLab