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
|
- name: Install RetroArch and assets
|
||||||
pacman:
|
community.general.pacman:
|
||||||
name: "{{ retroarch_packages }}"
|
name: "{{ retroarch_packages }}"
|
||||||
state: present
|
state: present
|
||||||
update_cache: yes
|
update_cache: yes
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
- name: Install VirtualBox and kernel modules
|
- name: Install VirtualBox and kernel modules
|
||||||
become: true
|
become: true
|
||||||
pacman:
|
community.general.pacman:
|
||||||
name: >-
|
name: >-
|
||||||
virtualbox
|
virtualbox
|
||||||
{{ lookup('pipe', "pacman -Qsq '^linux' | grep '^linux[0-9]*[-rt]*$' | awk '{print $1 \"-virtualbox-host-modules\"}' ORS=' '") }}
|
{{ lookup('pipe', "pacman -Qsq '^linux' | grep '^linux[0-9]*[-rt]*$' | awk '{print $1 \"-virtualbox-host-modules\"}' ORS=' '") }}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
- name: Install fakeroot
|
- name: Install fakeroot
|
||||||
pacman:
|
community.general.pacman:
|
||||||
name: fakeroot
|
name: fakeroot
|
||||||
state: present
|
state: present
|
||||||
when: run_once_dev_fakeroot is not defined
|
when: run_once_dev_fakeroot is not defined
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
- name: Install GCC
|
- name: Install GCC
|
||||||
pacman:
|
community.general.pacman:
|
||||||
name: gcc
|
name: gcc
|
||||||
state: present
|
state: present
|
||||||
update_cache: yes
|
update_cache: yes
|
@ -1,5 +1,5 @@
|
|||||||
- name: install git
|
- name: install git
|
||||||
pacman:
|
community.general.pacman:
|
||||||
name: git
|
name: git
|
||||||
state: present
|
state: present
|
||||||
when: run_once_dev_git is not defined
|
when: run_once_dev_git is not defined
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
- name: install make
|
- name: install make
|
||||||
pacman:
|
community.general.pacman:
|
||||||
name: make
|
name: make
|
||||||
state: present
|
state: present
|
@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
- name: python pip install
|
- name: python pip install
|
||||||
pacman:
|
community.general.pacman:
|
||||||
name: python-pip
|
name: python-pip
|
||||||
state: present
|
state: present
|
||||||
when: run_once_dev_python_pip is not defined
|
when: run_once_dev_python_pip is not defined
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
- name: python-yaml install
|
- name: python-yaml install
|
||||||
pacman:
|
community.general.pacman:
|
||||||
name: python-yaml
|
name: python-yaml
|
||||||
state: present
|
state: present
|
||||||
when: run_once_dev_python_yaml is not defined
|
when: run_once_dev_python_yaml is not defined
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
- name: docker & docker compose install
|
- name: docker & docker compose install
|
||||||
pacman:
|
community.general.pacman:
|
||||||
name: ['docker','docker-compose']
|
name: ['docker','docker-compose']
|
||||||
state: present
|
state: present
|
||||||
notify: docker restart
|
notify: docker restart
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
- name: install wireguard for Arch
|
- name: install wireguard for Arch
|
||||||
pacman:
|
community.general.pacman:
|
||||||
name: wireguard-tools
|
name: wireguard-tools
|
||||||
state: present
|
state: present
|
||||||
when: ansible_os_family == "Archlinux"
|
when: ansible_os_family == "Archlinux"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
- name: install certbot
|
- name: install certbot
|
||||||
pacman:
|
community.general.pacman:
|
||||||
name:
|
name:
|
||||||
- certbot-nginx
|
- certbot-nginx
|
||||||
state: present
|
state: present
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
- name: install certbot
|
- name: install certbot
|
||||||
pacman:
|
community.general.pacman:
|
||||||
name: certbot
|
name: certbot
|
||||||
state: present
|
state: present
|
||||||
when: run_once_srv_web_7_7_certbot is not defined
|
when: run_once_srv_web_7_7_certbot is not defined
|
||||||
|
|
||||||
- name: install certbot DNS plugin
|
- name: install certbot DNS plugin
|
||||||
pacman:
|
community.general.pacman:
|
||||||
name: "certbot-dns-{{ certbot_acme_challenge_method }}"
|
name: "certbot-dns-{{ certbot_acme_challenge_method }}"
|
||||||
state: present
|
state: present
|
||||||
when:
|
when:
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
register: setup_mariadb_container_result
|
register: setup_mariadb_container_result
|
||||||
|
|
||||||
- name: install python-mysqlclient
|
- name: install python-mysqlclient
|
||||||
pacman:
|
community.general.pacman:
|
||||||
name: python-mysqlclient
|
name: python-mysqlclient
|
||||||
state: present
|
state: present
|
||||||
|
|
||||||
|
@ -17,6 +17,6 @@
|
|||||||
delay: 5
|
delay: 5
|
||||||
|
|
||||||
- name: install python-psycopg2
|
- name: install python-psycopg2
|
||||||
pacman:
|
community.general.pacman:
|
||||||
name: python-psycopg2
|
name: python-psycopg2
|
||||||
state: present
|
state: present
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
- telegram_chat_id # The Telegram chat ID to send messages to
|
- telegram_chat_id # The Telegram chat ID to send messages to
|
||||||
|
|
||||||
- name: install curl
|
- name: install curl
|
||||||
pacman:
|
community.general.pacman:
|
||||||
name: curl
|
name: curl
|
||||||
state: present
|
state: present
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
- name: Install required Python modules
|
- name: Install required Python modules
|
||||||
pacman:
|
community.general.pacman:
|
||||||
name: python-requests
|
name: python-requests
|
||||||
state: present
|
state: present
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
- name: install postfix
|
- name: install postfix
|
||||||
pacman:
|
community.general.pacman:
|
||||||
name: postfix
|
name: postfix
|
||||||
state: present
|
state: present
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
- name: update pacman
|
- name: update pacman
|
||||||
pacman:
|
community.general.pacman:
|
||||||
update_cache: yes
|
update_cache: yes
|
||||||
upgrade: yes
|
upgrade: yes
|
||||||
when: run_once_update_pacman is not defined
|
when: run_once_update_pacman is not defined
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
- name: Install core gaming tools from pacman
|
- name: Install core gaming tools from pacman
|
||||||
pacman:
|
community.general.pacman:
|
||||||
name:
|
name:
|
||||||
- steam
|
- steam
|
||||||
- lutris
|
- lutris
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
- name: install administration tools
|
- name: install administration tools
|
||||||
pacman:
|
community.general.pacman:
|
||||||
name:
|
name:
|
||||||
- base-devel
|
- base-devel
|
||||||
- cmake
|
- cmake
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
# Necessary for building: https://chat.openai.com/share/99d258cc-294b-4924-8eef-02fe419bb838
|
# Necessary for building: https://chat.openai.com/share/99d258cc-294b-4924-8eef-02fe419bb838
|
||||||
- name: install which
|
- name: install which
|
||||||
pacman:
|
community.general.pacman:
|
||||||
name: which
|
name: which
|
||||||
state: present
|
state: present
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user