9 lines
175 B
YAML
9 lines
175 B
YAML
---
|
|
- name: 检查是否升级git
|
|
stat:
|
|
path: /usr/local/git
|
|
register: git_stat_result
|
|
|
|
- name: 安装
|
|
include: install.yml
|
|
when: not git_stat_result.stat.exists |