From 7f3cffb414e0eb368443095373c5c4123b6033bd Mon Sep 17 00:00:00 2001 From: Someone Date: Thu, 8 Jan 2026 21:27:49 +0100 Subject: [PATCH] [roles/workstation/common] common workstation tools. --- roles/workstation/common/tasks/main.yml | 35 +++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 roles/workstation/common/tasks/main.yml diff --git a/roles/workstation/common/tasks/main.yml b/roles/workstation/common/tasks/main.yml new file mode 100644 index 0000000..15557f0 --- /dev/null +++ b/roles/workstation/common/tasks/main.yml @@ -0,0 +1,35 @@ +##################################### +### someone's ansible provisioner ### +##################################### +# Part of: https://git.somenet.org/root/pub/somesible.git +# 2017-2026 by someone +# +--- +- name: install common workstation packages + apt: + pkg: + - bluez + - bluez-cups + - bluez-firmware + - bluez-meshd + - bluez-obexd + - bluez-tools + - chromium + - cups + - hpijs-ppds + - hplip + - keepassxc + - laptop-detect + - libnotify-bin + - libreoffice + - network-manager + - pdftk-java + - printer-driver-all-enforce + - rfkill + - smplayer + - udisks2 + - vlc + - yt-dlp + state: present + policy_rc_d: 101 + tags: "online" -- 2.47.3