Переписал всё, сейчас вроде как отрабатывает без ошибок

This commit is contained in:
B4D_US3R 2025-08-02 09:57:37 +05:00
parent 436adfbc4f
commit 26f2ea374d
49 changed files with 1404 additions and 169 deletions

View file

@ -0,0 +1,25 @@
- name: Update Debian
ansible.builtin.apt:
update_cache: true
upgrade: "full"
- name: Install Packages
ansible.builtin.apt:
name:
- git
- build-essential
- postgresql
- postgresql-contrib
- cmake
- libmagic-dev
- elixir
- erlang-dev
- erlang-nox
- imagemagick
- ffmpeg
- libimage-exiftool-perl
- nginx
- certbot
- python3-certbot-nginx
- python3-psycopg2
- cron

View file

@ -0,0 +1,4 @@
- name: Check Debian
when: ansible_facts["distribution"] == "Debian"
ansible.builtin.include_tasks:
file: debian.yml