diff options
Diffstat (limited to 'roles')
-rw-r--r-- | roles/tools/tasks/main.yml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/roles/tools/tasks/main.yml b/roles/tools/tasks/main.yml index 0abd228..f622ef6 100644 --- a/roles/tools/tasks/main.yml +++ b/roles/tools/tasks/main.yml @@ -12,6 +12,7 @@ loop: - tmux - htop + - "{{ ansible_become_method }}" #failed_when: false ignore_errors: true @@ -25,11 +26,12 @@ - name: install misc utils package: state=present name="{{ item }}" loop: - - zsh - neovim - - wget + - figlet - curl + - wget - git + - zsh #failed_when: false ignore_errors: true @@ -37,3 +39,4 @@ git: repo: "https://gitlab.com/rgoncalves.se/infrastructure/infrastructure-scripts" dest: /data/scripts + force: true |