1
0
Fork 0

Add networking tools and IMs

This commit is contained in:
Daniele Tricoli 2022-12-07 05:42:42 +01:00
parent 25a68374b8
commit a041f8811a
3 changed files with 49 additions and 4 deletions

View File

@ -0,0 +1,3 @@
---
apt_become: true
apt_become_user: root

View File

@ -0,0 +1,40 @@
---
- block:
- name: Networking tools
ansible.builtin.apt:
name:
- curl
- iftop
- bind9-dnsutils
- aria2
- finger
- mitmproxy
- mosquitto-clients
- mtr
- nextcloud-desktop
- nmap
- smbclient
update_cache: true
cache_valid_time: 3600
tags: apt
- name: IM
ansible.builtin.apt:
name:
- quassel-client
- telegram-desktop
update_cache: true
cache_valid_time: 3600
tags: apt
- name: ensure net-tools is absent
ansible.builtin.apt:
name:
- net-tools
state: absent
become: "{{ apt_become }}"
become_user: "{{ apt_become_user }}"

View File

@ -4,14 +4,16 @@
connection: local
roles:
- ../roles/alacritty
- ../roles/audio
- ../roles/apt
- ../roles/networking
- ../roles/audio
- ../roles/system
- ../roles/alacritty
- ../roles/neovim
- ../roles/emacs
- ../roles/fontconfig
- ../roles/git
- ../roles/neovim
- ../roles/pipx
- ../roles/starship
- ../roles/system
- ../roles/xinitrc