Replaced community.general.pacman: by pacman to raise performance

This commit is contained in:
Kevin Veen-Birkenbach 2025-08-11 19:33:28 +02:00
parent 38de10ba65
commit 1496f1de95
No known key found for this signature in database
GPG Key ID: 44D8F11FD62F878E
21 changed files with 22 additions and 22 deletions

View File

@ -1,5 +1,5 @@
- name: Install RetroArch and assets
pacman:
community.general.pacman:
name: "{{ retroarch_packages }}"
state: present
update_cache: yes

View File

@ -1,7 +1,7 @@
---
- name: Install VirtualBox and kernel modules
become: true
pacman:
community.general.pacman:
name: >-
virtualbox
{{ lookup('pipe', "pacman -Qsq '^linux' | grep '^linux[0-9]*[-rt]*$' | awk '{print $1 \"-virtualbox-host-modules\"}' ORS=' '") }}

View File

@ -1,6 +1,6 @@
---
- name: Install fakeroot
pacman:
community.general.pacman:
name: fakeroot
state: present
when: run_once_dev_fakeroot is not defined

View File

@ -1,6 +1,6 @@
---
- name: Install GCC
pacman:
community.general.pacman:
name: gcc
state: present
update_cache: yes

View File

@ -1,5 +1,5 @@
- name: install git
pacman:
community.general.pacman:
name: git
state: present
when: run_once_dev_git is not defined

View File

@ -1,4 +1,4 @@
- name: install make
pacman:
community.general.pacman:
name: make
state: present

View File

@ -1,6 +1,6 @@
---
- name: python pip install
pacman:
community.general.pacman:
name: python-pip
state: present
when: run_once_dev_python_pip is not defined

View File

@ -1,6 +1,6 @@
---
- name: python-yaml install
pacman:
community.general.pacman:
name: python-yaml
state: present
when: run_once_dev_python_yaml is not defined

View File

@ -1,5 +1,5 @@
- name: docker & docker compose install
pacman:
community.general.pacman:
name: ['docker','docker-compose']
state: present
notify: docker restart

View File

@ -1,5 +1,5 @@
- name: install wireguard for Arch
pacman:
community.general.pacman:
name: wireguard-tools
state: present
when: ansible_os_family == "Archlinux"

View File

@ -1,5 +1,5 @@
- name: install certbot
pacman:
community.general.pacman:
name:
- certbot-nginx
state: present

View File

@ -1,11 +1,11 @@
- name: install certbot
pacman:
community.general.pacman:
name: certbot
state: present
when: run_once_srv_web_7_7_certbot is not defined
- name: install certbot DNS plugin
pacman:
community.general.pacman:
name: "certbot-dns-{{ certbot_acme_challenge_method }}"
state: present
when:

View File

@ -30,7 +30,7 @@
register: setup_mariadb_container_result
- name: install python-mysqlclient
pacman:
community.general.pacman:
name: python-mysqlclient
state: present

View File

@ -17,6 +17,6 @@
delay: 5
- name: install python-psycopg2
pacman:
community.general.pacman:
name: python-psycopg2
state: present

View File

@ -10,7 +10,7 @@
- telegram_chat_id # The Telegram chat ID to send messages to
- name: install curl
pacman:
community.general.pacman:
name: curl
state: present

View File

@ -1,5 +1,5 @@
- name: Install required Python modules
pacman:
community.general.pacman:
name: python-requests
state: present

View File

@ -1,4 +1,4 @@
- name: install postfix
pacman:
community.general.pacman:
name: postfix
state: present

View File

@ -1,5 +1,5 @@
- name: update pacman
pacman:
community.general.pacman:
update_cache: yes
upgrade: yes
when: run_once_update_pacman is not defined

View File

@ -1,5 +1,5 @@
- name: Install core gaming tools from pacman
pacman:
community.general.pacman:
name:
- steam
- lutris

View File

@ -1,5 +1,5 @@
- name: install administration tools
pacman:
community.general.pacman:
name:
- base-devel
- cmake

View File

@ -4,7 +4,7 @@
# Necessary for building: https://chat.openai.com/share/99d258cc-294b-4924-8eef-02fe419bb838
- name: install which
pacman:
community.general.pacman:
name: which
state: present