22 lines
461 B
YAML
22 lines
461 B
YAML
---
|
|
|
|
#- name: 下载代码
|
|
# local_action: git
|
|
# args:
|
|
# repo: "http://git.legu.cc/wuhao/data_cleaning.git"
|
|
# dest: "{{ansible_role_name}}/files/data_cleaning"
|
|
#
|
|
#- name: 压缩代码
|
|
# local_action: archive
|
|
# args:
|
|
# path: "{{ansible_role_name}}/files/data_cleaning/"
|
|
# dest: "{{ansible_role_name}}/files/data_cleaning.tar.gz"
|
|
#
|
|
|
|
- name: test
|
|
git:
|
|
repo: "http://git.legu.cc/wuhao/data_cleaning.git"
|
|
dest: "/data/code/data_cleaning"
|
|
|
|
|