From b779135121d47d111d1c7bec17d24e1432d612d0 Mon Sep 17 00:00:00 2001 From: Matt-1-2-3 <hardtothinkofaname@gmail.com> Date: Tue, 18 Oct 2022 19:33:27 -0400 Subject: [PATCH] fomatting fixes and removal of jinja to get rid of piepline errors --- roles/install_arch/tasks/main.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/roles/install_arch/tasks/main.yml b/roles/install_arch/tasks/main.yml index b60097203..5686b7f8d 100644 --- a/roles/install_arch/tasks/main.yml +++ b/roles/install_arch/tasks/main.yml @@ -64,8 +64,7 @@ unarchive: src: /tmp/archlinux-bootstrap-x86_64.tar.gz dest: /tmpgpg --keyserver-options auto-key-retrieve --verifys/dev - when: "{{ valid_key.stdout_lines[1] | trim == gpg_info.stderr_lines[2].split()[-1]| trim }}" - + when: valid_key.stdout_lines[1] | trim == gpg_info.stderr_lines[2].split()[-1] | trim - name: Copy resolv.conf to bootstrap chroot copy: remote_src=true src=/etc/resolv.conf dest=/tmp/root.x86_64/etc/resolv.conf owner=root group=root mode=0644 -- GitLab