aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--inventory.ini1
-rw-r--r--roles/setup_utils/tasks/main.yml16
2 files changed, 12 insertions, 5 deletions
diff --git a/inventory.ini b/inventory.ini
index 4035069..9c4e0f3 100644
--- a/inventory.ini
+++ b/inventory.ini
@@ -16,6 +16,7 @@
[clients]
LP-graphite
WS-bentonite
+PH-lineage
# =========================================================================== #
# SERVER GROUPS
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.