I'm using yamllint to validate my code and its telling me my line is too 
long - read many posts online, and can't understand how to fix this.

- name: copy multiple items into multiple locations
  copy:
      src: "{{ item.src }}"
      dest: "{{ item.dest }}"
      owner: "{{ item.owner }}"
      mode: "{{ item.mode }}"
  with_items:
      - {src: '/home/user/motd', dest: '/etc/motd', owner: "root", mode: 
'0644'}
      - {src: '/home/user/file', dest: '/etc/file', owner: "root", mode: 
'0600'}


How can i take the last two lines and have them over two lines each?

thank you :)
Rick

-- 
You received this message because you are subscribed to the Google Groups 
"Ansible Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/ecc5824f-6432-488a-8506-2af182a1cc51%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to