blob: 1e9cabb3ba841ad6b744b67409a6eeec0f566074 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# tools ~~ roles/tools/tasks/main.yml
# see : https://gitlab.archlinux.org/archlinux/infrastructure/-/blob/master/roles/tools/tasks/main.yml
---
- set_fact:
packages: "{{ packages[os_distribution] }}"
- name: install sysadmin tools
package: state=present name="{{ item }}"
loop:
- tmux
- htop
- "{{ ansible_become_method }}"
#failed_when: false
ignore_errors: true
- name: install per distribution correspond tools
package: state=present name="{{ item }}"
loop:
- "{{ packages.sshfs }}"
- "{{ packages.wireguard }}"
- "{{ packages.extra if packages.extra is defined }}"
ignore_errors: true
- name: install misc utils
package: state=present name="{{ item }}"
loop:
- neovim
- figlet
- curl
- wget
- git
- zsh
#failed_when: false
ignore_errors: true
- name: install scripts repository
git:
repo: "https://gitlab.com/rgoncalves.se/infrastructure/infrastructure-scripts"
dest: /data/scripts
force: true
|