Files
cms/roles/install_packages/tasks/archlinux.yml
ytshih c014a0b76e
All checks were successful
Ansible Playbook lint / ansible-lint (push) Successful in 14s
Fix: aws
2024-12-20 22:34:05 +08:00

37 lines
685 B
YAML

---
- name: Update package cache
community.general.pacman:
update_cache: true
- name: Install cms dependencies
community.general.pacman:
pkg:
- base-devel
- jdk8-openjdk
- fpc
- postgresql
- python
- libcap
- git
notify: Upgrade packages
- name: Install cms optional dependencies
community.general.pacman:
pkg:
- postgresql-libs
- libcups
- libyaml
- python-virtualenv
- python-pip
- rust
notify: Upgrade packages
- name: Install additional packages
community.general.pacman:
pkg:
- pyenv
- haproxy
- python-psycopg2
- unzip
notify: Upgrade packages