From abd99b179e3b130fc0d7314f713824d0b917c560 Mon Sep 17 00:00:00 2001 From: Thomas Kleinendorst Date: Sat, 13 Apr 2024 18:24:49 +0200 Subject: [PATCH] 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. --- roles/user/tasks/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/user/tasks/main.yml b/roles/user/tasks/main.yml index 94a2a07..3219d87 100644 --- a/roles/user/tasks/main.yml +++ b/roles/user/tasks/main.yml @@ -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.