如何使用ansible导出svn文件?

时间:2017-05-24 13:58:40

标签: svn ansible

我尝试使用subversion模块报告:它是一个文件而不是目录。

然后我使用了command模块

svn cat ip/build.xml --username admin --password 1234

工作正常。

在ansible中有没有其他方式来执行此

2 个答案:

答案 0 :(得分:3)

这应该是svn export文件:

- name: svn export file
  subversion:
    export: yes
    repo: https://svn.eionet.europa.eu/repositories/airquality/PP_Command.py
    dest: /tmp/PP_Command.py

答案 1 :(得分:0)

下面的ansible脚本显示了如何使用subversion导出文件。

- subversion:
    repo: svn+ssh://an.example.org/path/to/repo
    dest: /src/export

更多信息:http://docs.ansible.com/ansible/subversion_module.html