summaryrefslogtreecommitdiff
path: root/tasks/dependencies/all.yml
diff options
context:
space:
mode:
authorNikolaos Boutalas <nikolaos@boutalas.me>2024-01-05 03:50:50 +0200
committerNikolaos Boutalas <nikolaos@boutalas.me>2024-03-17 11:48:24 +0200
commit7217241c87516875cc6f882a9125403b97bf3e06 (patch)
tree3ddfc0e0d85d41fe141b87c099f82f676bfac545 /tasks/dependencies/all.yml
parent77475705a59c9c347e8face58cf17b051f84f63e (diff)
Minor changesHEADmaster
Diffstat (limited to 'tasks/dependencies/all.yml')
-rw-r--r--tasks/dependencies/all.yml20
1 files changed, 0 insertions, 20 deletions
diff --git a/tasks/dependencies/all.yml b/tasks/dependencies/all.yml
deleted file mode 100644
index aa05885..0000000
--- a/tasks/dependencies/all.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-- name: Install Ubuntu dependencies
- ansible.builtin.import_tasks:
- file: tasks/dependencies/ubuntu.yml
- when: ansible_distribution == 'Debian' or ansible_distribution == 'Ubuntu'
- tags:
- - always
-
-- name: Install Fedora dependencies
- ansible.builtin.import_tasks:
- file: tasks/dependencies/fedora.yml
- when: ansible_distribution == 'Fedora'
- tags:
- - always
-
-- name: Install dependencies
- become: true
- ansible.builtin.package:
- name: [curl, git, zsh, docker, fzf, tmux, stow, unzip, zip]
- tags:
- - always