Fix missing git on new install

I locked myself out and had to rerun the scripting. It failed on
the user role since git wasn't installed. The dependency is now
correctly added.
This commit is contained in:
Thomas Kleinendorst 2024-04-13 18:24:49 +02:00
parent 77c9614321
commit abd99b179e

View file

@ -19,6 +19,7 @@
ansible.builtin.apt:
pkg:
- acl # Needed to prevent this error: https://stackoverflow.com/questions/46352173/ansible-failed-to-set-permissions-on-the-temporary
- git
- zsh
state: latest
- name: Install Oh My ZSH # noqa: command-instead-of-module ignore error since we're removing the script after install.