From d451fe69eb69a4c7ab7620bfb05a7eb567fa36f2 Mon Sep 17 00:00:00 2001 From: Martin Pietsch Date: Tue, 9 Jul 2019 16:03:36 +0200 Subject: [PATCH] removed owner and group from setimage --- tasks/setimage.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tasks/setimage.yml b/tasks/setimage.yml index 5ae3e11..17d66f8 100644 --- a/tasks/setimage.yml +++ b/tasks/setimage.yml @@ -1,13 +1,9 @@ --- -- import_tasks: _init.yml - - name: set image file for host {{ pxelinux_image_boothost }} copy: src: "{{ '%s/pxelinux.cfg/%s-%s-%s' | format(pxelinux_root_path, pxelinux_image_distribution, pxelinux_image_release, pxelinux_image_architecture) }}" dest: "{{ '%s/pxelinux.cfg/01-%s' | format(pxelinux_root_path, hostvars[pxelinux_image_boothost].network.devices[host.network.control_device].mac | replace(':','-')) }}" - owner: "{{ _pxelinux_file_owner }}" - group: "{{ _pxelinux_file_group }}" mode: 0644 remote_src: yes -- GitLab