summaryrefslogtreecommitdiffstats
path: root/roles/git/tasks/main.yml
diff options
context:
space:
mode:
authorAhmed AbdelHalim <[email protected]>2025-09-20 21:14:30 +0200
committerAhmed AbdelHalim <[email protected]>2025-09-20 21:14:30 +0200
commit8feee75d97eeddbb9806ff475ba660dc12b5eb92 (patch)
tree437a39e3fdcca81e8a562255b928c890119a9129 /roles/git/tasks/main.yml
parent56f07d3d5c09a071b80bdc4e3d9b5ebc82691e64 (diff)
Fix homebrew role dependencies on ubuntu
Diffstat (limited to 'roles/git/tasks/main.yml')
-rw-r--r--roles/git/tasks/main.yml6
1 files changed, 6 insertions, 0 deletions
diff --git a/roles/git/tasks/main.yml b/roles/git/tasks/main.yml
new file mode 100644
index 00000000..d0147464
--- /dev/null
+++ b/roles/git/tasks/main.yml
@@ -0,0 +1,6 @@
+---
+- name: "Ensure git is installed"
+ become: true
+ ansible.builtin.package:
+ name: "git"
+ state: "present"