Skip to content
Snippets Groups Projects
Verified Commit 2ae8e7b1 authored by Thorben Günther's avatar Thorben Günther
Browse files

install_arch: Use shell instead of command

shell is like command but runs the command through a shell, so that
piping will work.
parent 4104404f
No related branches found
No related tags found
No related merge requests found
......@@ -184,7 +184,7 @@
file: src=/run/systemd/resolve/stub-resolv.conf dest=/mnt/etc/resolv.conf state=link force=yes owner=root group=root mode=0644
- name: clean pacman cache
command: yes | chroot /mnt pacman -Scc
shell: yes | chroot /mnt pacman -Scc
register: chroot_pacman_clean_cache
changed_when: "chroot_pacman_clean_cache.rc == 0"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment