ansible-role-common/tasks/usertools-Debian.yml
2023-07-03 10:17:52 +02:00

15 lines
285 B
YAML

---
# Common/Usertools: User's Main Machine/ Developer Tools - Debian Version
- name: Usertools - Install user's working utilities
become: true
ansible.builtin.apt:
name:
- nmap
- rsync
- icdiff
- iftop
- ansible
state: present
diff: false