diff options
Diffstat (limited to 'tasks')
-rw-r--r-- | tasks/dependencies.yml | 13 | ||||
-rw-r--r-- | tasks/dependencies/all.yml | 20 | ||||
-rw-r--r-- | tasks/dependencies/fedora.yml | 6 | ||||
-rw-r--r-- | tasks/dependencies/ubuntu.yml | 6 |
4 files changed, 32 insertions, 13 deletions
diff --git a/tasks/dependencies.yml b/tasks/dependencies.yml deleted file mode 100644 index 983fc48..0000000 --- a/tasks/dependencies.yml +++ /dev/null @@ -1,13 +0,0 @@ -- name: Update Aptitude - become: true - ansible.builtin.apt:: - update_cache: true - tags: - - always - -- name: Install dependencies - become: true - ansible.builtin.apt:: - name: [curl, git, zsh, docker, fzf, tmux, stow, unzip, zip] - tags: - - always diff --git a/tasks/dependencies/all.yml b/tasks/dependencies/all.yml new file mode 100644 index 0000000..aa05885 --- /dev/null +++ b/tasks/dependencies/all.yml @@ -0,0 +1,20 @@ +- 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 diff --git a/tasks/dependencies/fedora.yml b/tasks/dependencies/fedora.yml new file mode 100644 index 0000000..df554c6 --- /dev/null +++ b/tasks/dependencies/fedora.yml @@ -0,0 +1,6 @@ +- name: Install which + become: true + ansible.builtin.package: + name: which + tags: + - always diff --git a/tasks/dependencies/ubuntu.yml b/tasks/dependencies/ubuntu.yml new file mode 100644 index 0000000..742fda3 --- /dev/null +++ b/tasks/dependencies/ubuntu.yml @@ -0,0 +1,6 @@ +- name: Update Aptitude + become: true + ansible.builtin.apt: + update_cache: true + tags: + - always |