copy ansible

04.08.2020 - Записи в блоге

- name: Copy directory from ansible to host with owner and permissions
  copy:
    src: "local_directory1/"
    dest: "{{ remote_tmp_path}}/"
    owner: "uip"
    group: "uip"
    mode: '0644'

 

› tags: ansible / copy /