diff options
author | binary <me@rgoncalves.se> | 2020-08-12 11:01:36 +0200 |
---|---|---|
committer | binary <me@rgoncalves.se> | 2020-08-12 11:01:36 +0200 |
commit | c856196a3471a2e7d547a11ec42d69f13a8fe31a (patch) | |
tree | 031f7c27a4d7a280d34a515ee8b3085ed7896c6f /roles/setup_utils | |
parent | 25447594549f5abf954c331f1000d27260cf14a0 (diff) | |
download | infrastructure-c856196a3471a2e7d547a11ec42d69f13a8fe31a.tar.gz |
out of sync between remotes
Diffstat (limited to 'roles/setup_utils')
-rw-r--r-- | roles/setup_utils/tasks/main.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/roles/setup_utils/tasks/main.yml b/roles/setup_utils/tasks/main.yml index 446ec46..65e810a 100644 --- a/roles/setup_utils/tasks/main.yml +++ b/roles/setup_utils/tasks/main.yml @@ -25,6 +25,18 @@ state: present ignore_errors: yes +- name: Check installation of curl + package: + name: "{{ package_curl }}" + state: present + ignore_errors: yes + +- name: Check installation of wget + package: + name: "{{ package_wget }}" + state: present + ignore_errors: yes + - name: Copy zshrc configuration file copy: src: zshrc |