aboutsummaryrefslogtreecommitdiffstats
path: root/roles/tools/tasks
diff options
context:
space:
mode:
Diffstat (limited to 'roles/tools/tasks')
-rw-r--r--roles/tools/tasks/main.yml39
1 files changed, 39 insertions, 0 deletions
diff --git a/roles/tools/tasks/main.yml b/roles/tools/tasks/main.yml
new file mode 100644
index 0000000..0abd228
--- /dev/null
+++ b/roles/tools/tasks/main.yml
@@ -0,0 +1,39 @@
+
+# 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
+ #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:
+ - zsh
+ - neovim
+ - wget
+ - curl
+ - git
+ #failed_when: false
+ ignore_errors: true
+
+- name: install scripts repository
+ git:
+ repo: "https://gitlab.com/rgoncalves.se/infrastructure/infrastructure-scripts"
+ dest: /data/scripts
remember that computers suck.