aboutsummaryrefslogtreecommitdiffstats
path: root/roles/tools/tasks/main.yml
blob: f622ef6f9bf985701fc98cb7df676caf27bb1ecc (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

# 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 }}"
  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
remember that computers suck.