diff options
author | Nikolaos Boutalas <nikolaos@boutalas.me> | 2023-08-08 17:01:52 +0300 |
---|---|---|
committer | Nikolaos Boutalas <nikolaos@boutalas.me> | 2023-08-08 17:01:52 +0300 |
commit | 2d8782ec3d2a278679dd168ca94285fb265b5669 (patch) | |
tree | 882c43109dd584d1a504acde6c1a099116030b18 /tasks/dependencies | |
parent | fb28a48832d08788f7ac180220e3b684f81a2d4f (diff) |
Support Fedora with ansible
Diffstat (limited to 'tasks/dependencies')
-rw-r--r-- | tasks/dependencies/all.yml | 20 | ||||
-rw-r--r-- | tasks/dependencies/fedora.yml | 6 | ||||
-rw-r--r-- | tasks/dependencies/ubuntu.yml | 6 |
3 files changed, 32 insertions, 0 deletions
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 |