ansible 通过网络下载和上传文件
 

1.通过http下载文件,并且不验证证书

- name: download files by https
  get_url:
    url: https://robin.org.cn/test.zip
    dest: /appvol/ansible-test/
    validate_certs: no