diff options
Diffstat (limited to 'tasks/dependencies.yml')
-rw-r--r-- | tasks/dependencies.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tasks/dependencies.yml b/tasks/dependencies.yml index 9332322..983fc48 100644 --- a/tasks/dependencies.yml +++ b/tasks/dependencies.yml @@ -1,13 +1,13 @@ - name: Update Aptitude become: true - apt: + ansible.builtin.apt:: update_cache: true - tags: + tags: - always - name: Install dependencies become: true - apt: + ansible.builtin.apt:: name: [curl, git, zsh, docker, fzf, tmux, stow, unzip, zip] tags: - always |