initial commitit

This commit is contained in:
Patrick Neff 2022-01-23 20:50:33 +01:00
commit 4055ae5c4d
3 changed files with 33 additions and 0 deletions

4
meta/main.yml Normal file
View File

@ -0,0 +1,4 @@
galaxy_info:
role_name: common_packages
dependencies: []

28
tasks/Debian.yml Normal file
View File

@ -0,0 +1,28 @@
- name: Install common packages
tags: packages
ansible.builtin.package:
name:
- vim-nox
- dnsutils
- lm-sensors
- nfs-common
- python3-psutil
- htop
- zsh
- git
- at
- colordiff
- curl
- iotop
- lsof
- neofetch
- net-tools
- nmap
- rsync
- tmux
- traceroute
- wget
- whois
- fzf
- nano
state: present

1
tasks/main.yml Normal file
View File

@ -0,0 +1 @@
- include_tasks: "{{ ansible_facts['lsb']['id'] }}.yml"