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

install_arch: Fix cleanup of pacman cache

noconfirm does not work because the default answer to the first check is
`No`.
parent 7b2ba0c0
No related branches found
No related tags found
1 merge request!441install_arch: Fix cleanup of pacman cache
......@@ -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: chroot /mnt pacman -Scc --noconfirm
command: 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