ansible: ensure git is installed in github_ssh role

This commit is contained in:
ionutboangiu
2025-07-17 14:17:11 +03:00
committed by Dan Christian Bogos
parent 8bba489c3d
commit b77ae537d2

View File

@@ -1,4 +1,10 @@
---
- name: Ensure Git is installed
become: true
ansible.builtin.apt:
name: git
state: present
- name: Ensure SSH directory exists
ansible.builtin.file:
path: "/home/{{ ansible_user }}/.ssh"