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