mirror of
				https://github.com/kevinveenbirkenbach/computer-playbook.git
				synced 2025-10-31 18:29:21 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			254 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			254 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| ---
 | |
| - name: "Recursively copy files from local '{{ source_directory }}' to '{{ target_directory }}'"
 | |
|   ansible.builtin.copy:
 | |
|     src: "{{ source_directory }}"
 | |
|     dest: "{{ target_directory }}"
 | |
|     owner: "{{ NGINX.USER }}"
 | |
|     group: "{{ NGINX.USER }}"
 |