This repository has been archived on 2024-12-15. You can view files and clone it, but cannot push or open issues or pull requests.
ansible-machine-setup/roles/git/tasks/main.yaml
2020-09-30 08:34:18 +02:00

16 lines
297 B
YAML

---
- name: install required packages
package:
name:
- git
- git-flow
state: latest
- name: install git config
become_user: "{{ account.name }}"
shell:
chdir: "{{ dotfiles }}/git"
cmd: ./install.sh
creates: "{{ account.home }}/.gitconfig"