mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-29 15:06:26 +02:00
Cleaned up and refactored
This commit is contained in:
8
roles/client-git/tasks/main.yml
Normal file
8
roles/client-git/tasks/main.yml
Normal file
@@ -0,0 +1,8 @@
|
||||
- name: Set git user email to {{user_email}}
|
||||
ansible.builtin.shell: git config --global user.email "{{user_email}}"
|
||||
- name: Set git user name to {{user_full_name}}
|
||||
ansible.builtin.shell: git config --global user.name "{{user_full_name}}"
|
||||
- name: install git
|
||||
community.general.pacman:
|
||||
name: git
|
||||
state: present
|
Reference in New Issue
Block a user