mirror of
https://gitlab.archlinux.org/archlinux/infrastructure.git
synced 2025-01-05 09:24:12 +01:00
26f289b72b
ansible-lint 6.5.0 complains about: name: All names should start with an uppercase letter. (name[casing])
20 lines
566 B
YAML
20 lines
566 B
YAML
- name: Setup quassel server
|
|
hosts: quassel.archlinux.org
|
|
remote_user: root
|
|
roles:
|
|
- { role: common }
|
|
- { role: firewalld }
|
|
- { role: wireguard }
|
|
- { role: sshd }
|
|
- { role: root_ssh }
|
|
- { role: borg_client, tags: ["borg"] }
|
|
- { role: certbot }
|
|
- role: postgres
|
|
postgres_max_connections: 100
|
|
postgres_ssl: 'off'
|
|
postgres_shared_buffers: 512MB
|
|
postgres_effective_cache_size: 1GB
|
|
- { role: quassel, quassel_domain: "quassel.archlinux.org" }
|
|
- { role: prometheus_exporters }
|
|
- { role: promtail }
|