aboutsummaryrefslogtreecommitdiffstats
path: root/roles/setup_utils/tasks/main.yml
diff options
context:
space:
mode:
Diffstat (limited to 'roles/setup_utils/tasks/main.yml')
-rw-r--r--roles/setup_utils/tasks/main.yml16
1 files changed, 11 insertions, 5 deletions
diff --git a/roles/setup_utils/tasks/main.yml b/roles/setup_utils/tasks/main.yml
index acf8248..300bef6 100644
--- a/roles/setup_utils/tasks/main.yml
+++ b/roles/setup_utils/tasks/main.yml
@@ -9,34 +9,40 @@
# =========================================================================== #
---
-- name: Check installation of zsh
+- name: Check installation of "{{ package_zsh }}"
package:
name: "{{ package_zsh }}"
state: present
-- name: Check installation of neovim
+- name: Check installation of "{{ package_neovim }}"
package:
name: "{{ package_neovim }}"
state: present
-- name: Check installation of tmux
+- name: Check installation of "{{ package_tmux }}"
package:
name: "{{ package_tmux }}"
state: present
ignore_errors: yes
-- name: Check installation of curl
+- name: Check installation of "{{ package_curl }}"
package:
name: "{{ package_curl }}"
state: present
ignore_errors: yes
-- name: Check installation of wget
+- name: Check installation of "{{ package_wget }}"
package:
name: "{{ package_wget }}"
state: present
ignore_errors: yes
+- name: Check installation of figlet
+ package:
+ name: figlet
+ state: present
+ ignore_errors: yes
+
- name: Copy zshrc configuration file
copy:
src: zshrc
remember that computers suck.