mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-04-05 08:34:16 +02:00
21 lines
645 B
YAML
21 lines
645 B
YAML
- name: install git
|
|
community.general.pacman:
|
|
name: git
|
|
state: present
|
|
become: true
|
|
|
|
- name: install gitconfig
|
|
command:
|
|
cmd: "pkgmgr install gitconfig --clone-mode https"
|
|
when: run_once_gitconfig is not defined
|
|
become: true
|
|
|
|
- name: setup git
|
|
command: gitconfig --merge-option rebase --name "{{users.client.full_name}}" --email "{{users.client.email}}" --website "{{users.client.website}}" --signing gpg --gpg-key "{{users.client.gpg}}"
|
|
when: run_once_the gitconfig is not defined
|
|
become: false
|
|
|
|
- name: run the gitconfig tasks once
|
|
set_fact:
|
|
run_once_gitconfig: true
|
|
when: run_once_gitconfig is not defined |