From 8ed85e6058bc23d70541f91c7ab1455226b88ee6 Mon Sep 17 00:00:00 2001 From: binary Date: Mon, 31 Aug 2020 10:42:58 +0200 Subject: 2020-08-31 : Updated --- roles/setup_utils/tasks/main.yml | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) (limited to 'roles') 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 -- cgit v1.2.3