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.

52 lines
1016 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"]
tasks:
- name: install base packages
package:
name:
- htop
- mc
- tmux
- nmap
- 1password #this might not be working yet since it isnt in the apt catalog
state: latest
update_cache: yes
- name: install Teams
package:
name:
- teams #this is flatpak, don't know if it is working yet
state: latest
update_cache: yes
- name: install Evolution
package:
name:
- evolution
- evolution-ews
state: latest
update_cache: yes
- name: install Messengers
package:
name:
- telegram-desktop
state: latest
update_cache: yes