aboutsummaryrefslogtreecommitdiffstats
path: root/roles
diff options
context:
space:
mode:
authorbinary <me@rgoncalves.se>2020-08-31 10:42:58 +0200
committerbinary <me@rgoncalves.se>2020-08-31 10:42:58 +0200
commit8ed85e6058bc23d70541f91c7ab1455226b88ee6 (patch)
tree6c6fafd1b6c898f0743bf7f2b8c380976c8a6757 /roles
parent2f91da467087c03ab9d7fe19b8fba9fe9dd3f7f2 (diff)
downloadinfrastructure-8ed85e6058bc23d70541f91c7ab1455226b88ee6.tar.gz
2020-08-31 : Updated
Diffstat (limited to 'roles')
-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.