mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-15 08:30:46 +02:00
Replaced community.general.pacman: by pacman to raise performance
This commit is contained in:
parent
38de10ba65
commit
1496f1de95
@ -1,5 +1,5 @@
|
||||
- name: Install RetroArch and assets
|
||||
pacman:
|
||||
community.general.pacman:
|
||||
name: "{{ retroarch_packages }}"
|
||||
state: present
|
||||
update_cache: yes
|
@ -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=' '") }}
|
||||
|
@ -1,6 +1,6 @@
|
||||
---
|
||||
- name: Install fakeroot
|
||||
pacman:
|
||||
community.general.pacman:
|
||||
name: fakeroot
|
||||
state: present
|
||||
when: run_once_dev_fakeroot is not defined
|
||||
|
@ -1,6 +1,6 @@
|
||||
---
|
||||
- name: Install GCC
|
||||
pacman:
|
||||
community.general.pacman:
|
||||
name: gcc
|
||||
state: present
|
||||
update_cache: yes
|
@ -1,5 +1,5 @@
|
||||
- name: install git
|
||||
pacman:
|
||||
community.general.pacman:
|
||||
name: git
|
||||
state: present
|
||||
when: run_once_dev_git is not defined
|
||||
|
@ -1,4 +1,4 @@
|
||||
- name: install make
|
||||
pacman:
|
||||
community.general.pacman:
|
||||
name: make
|
||||
state: present
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -1,5 +1,5 @@
|
||||
- name: docker & docker compose install
|
||||
pacman:
|
||||
community.general.pacman:
|
||||
name: ['docker','docker-compose']
|
||||
state: present
|
||||
notify: docker restart
|
||||
|
@ -1,5 +1,5 @@
|
||||
- name: install wireguard for Arch
|
||||
pacman:
|
||||
community.general.pacman:
|
||||
name: wireguard-tools
|
||||
state: present
|
||||
when: ansible_os_family == "Archlinux"
|
||||
|
@ -1,5 +1,5 @@
|
||||
- name: install certbot
|
||||
pacman:
|
||||
community.general.pacman:
|
||||
name:
|
||||
- certbot-nginx
|
||||
state: present
|
||||
|
@ -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:
|
||||
|
@ -30,7 +30,7 @@
|
||||
register: setup_mariadb_container_result
|
||||
|
||||
- name: install python-mysqlclient
|
||||
pacman:
|
||||
community.general.pacman:
|
||||
name: python-mysqlclient
|
||||
state: present
|
||||
|
||||
|
@ -17,6 +17,6 @@
|
||||
delay: 5
|
||||
|
||||
- name: install python-psycopg2
|
||||
pacman:
|
||||
community.general.pacman:
|
||||
name: python-psycopg2
|
||||
state: present
|
||||
|
@ -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
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
- name: Install required Python modules
|
||||
pacman:
|
||||
community.general.pacman:
|
||||
name: python-requests
|
||||
state: present
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
- name: install postfix
|
||||
pacman:
|
||||
community.general.pacman:
|
||||
name: postfix
|
||||
state: present
|
||||
|
@ -1,5 +1,5 @@
|
||||
- name: update pacman
|
||||
pacman:
|
||||
community.general.pacman:
|
||||
update_cache: yes
|
||||
upgrade: yes
|
||||
when: run_once_update_pacman is not defined
|
||||
|
@ -1,5 +1,5 @@
|
||||
- name: Install core gaming tools from pacman
|
||||
pacman:
|
||||
community.general.pacman:
|
||||
name:
|
||||
- steam
|
||||
- lutris
|
||||
|
@ -1,5 +1,5 @@
|
||||
- name: install administration tools
|
||||
pacman:
|
||||
community.general.pacman:
|
||||
name:
|
||||
- base-devel
|
||||
- cmake
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user