You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
888 B

---
- hosts: localhost
connection: local
become: true
pre_tasks:
- name: update repositories
apt:
update_cache: yes
changed_when: false
- name: install updates (Ubuntu/Debian)
apt:
upgrade: dist
update_cache: yes
when: ansible_distribution in ["Ubuntu", "Debian"]
- name: install base packages
package:
name:
- htop
- mc
- tmux
- nmap
- teams
- 1password
state: latest
update_cache: yes
- name: install Teams
package:
name:
- teams
state: latest
update_cache: yes
- name: install Evolution
package:
name:
- evolution-ews
state: latest
update_cache: yes
- name: install Messengers
package:
name:
- telegram-desktop
state: latest
update_cache: yes