summaryrefslogtreecommitdiff
path: root/test/integration/targets/git_config/tasks/setup.yml
blob: 85e168fe65d3dad806d615a750aecf00dd6ef069 (plain)
1
2
3
4
5
6
7
8
9
10
11
---
- name: verify that git is installed so this test can continue
  command: which git
  register: git_installed
  ignore_errors: yes

- name: get git version, only newer than {{git_version_supporting_includes}} has includes option
  shell: "git --version | grep 'git version' | sed 's/git version //'"
  register: git_version
  ignore_errors: yes
...