From dbe2c68910339c0be9b67e1c3e2f6769132aa4aa Mon Sep 17 00:00:00 2001 From: olli Date: Fri, 8 Jul 2022 14:25:48 +0200 Subject: [PATCH] =?UTF-8?q?=E2=80=9Emint.yml=E2=80=9C=20hinzuf=C3=BCgen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mint.yml | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 mint.yml diff --git a/mint.yml b/mint.yml new file mode 100644 index 0000000..abd02bf --- /dev/null +++ b/mint.yml @@ -0,0 +1,45 @@ +--- +- 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