46 lines
1.1 KiB
YAML
46 lines
1.1 KiB
YAML
|
---
|
||
|
- name: Mint Packages
|
||
|
hosts: all
|
||
|
tasks:
|
||
|
|
||
|
- name: Install Basic Packages
|
||
|
apt:
|
||
|
name:
|
||
|
# powersave
|
||
|
- tlp
|
||
|
- tlp-rdw
|
||
|
# Speed up program start
|
||
|
- preload
|
||
|
# mediacodecs and fonts
|
||
|
- ubuntu-restricted-extras
|
||
|
- libavcodec-extra
|
||
|
- libdvd-pkg
|
||
|
# terminus font
|
||
|
- xfonts-terminus
|
||
|
- xfonts-terminus-oblique
|
||
|
- xfonts-terminus-dos
|
||
|
# useful other stuff
|
||
|
- spectre-meltdown-checker
|
||
|
- pwgen
|
||
|
- arj
|
||
|
- p7zip
|
||
|
- unace
|
||
|
- unadf
|
||
|
- bvi
|
||
|
- fdupes
|
||
|
- radeontop
|
||
|
- debootstrap
|
||
|
- geoip-bin
|
||
|
# tools for android-smartphones/LineageOS
|
||
|
- heimdall-flash
|
||
|
- android-tools-adb
|
||
|
- android-tools-fastboot
|
||
|
- android-tools-mkbootimg
|
||
|
update_cache: yes
|
||
|
install_recommends: no
|
||
|
|
||
|
- name: remove dhcpcd becazse NetworkManager is doing the job
|
||
|
command: systemctl enable dhcpcd
|
||
|
args:
|
||
|
removes: /etc/systemd/system/multi-user.target.wants/dhcpcd.service
|