25 lines
438 B
YAML
25 lines
438 B
YAML
---
|
|
- name: 下载 shipin
|
|
local_action: subversion
|
|
args:
|
|
repo: "{{svn}}/xinjsfs/client/resource/samejson/shipin.json"
|
|
dest: "{{ansible_role_name}}/files/shipin.json"
|
|
username: "{{username}}"
|
|
password: "{{password}}"
|
|
export: yes
|
|
force: yes
|
|
|
|
- name: 拷贝到gm
|
|
copy:
|
|
src: shipin.json
|
|
dest: "{{gmdir}}/{{gmgame}}"
|
|
|
|
- name: 拷贝到gc
|
|
copy:
|
|
src: shipin.json
|
|
dest: "{{gcdir}}/{{gmgame}}"
|
|
|
|
|
|
|
|
|