Skip to content

Commit

Permalink
Not installing deps on deb either
Browse files Browse the repository at this point in the history
  • Loading branch information
eb4x committed May 25, 2024
1 parent fb8bc24 commit 3621324
Showing 1 changed file with 0 additions and 34 deletions.
34 changes: 0 additions & 34 deletions roles/zabbix_web/tasks/Debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,40 +13,6 @@
tags:
- always

- name: "Debian | Install PHP Dependencies"
ansible.builtin.apt:
pkg: "{{ zabbix_web_php_dependencies }}"
state: "present"
update_cache: true
cache_valid_time: 0
environment:
http_proxy: "{{ zabbix_http_proxy | default(None) | default(omit) }}"
https_proxy: "{{ zabbix_https_proxy | default(None) | default(omit) }}"
register: zabbix_web_php_dependencies_install
until: zabbix_web_php_dependencies_install is succeeded
become: true
tags:
- install
- dependencies

- name: "Debian | Install PgSQL Dependencies"
ansible.builtin.apt:
pkg: "php{{ zabbix_web_php_installed_version }}-pgsql"
state: "present"
update_cache: true
cache_valid_time: 0
environment:
http_proxy: "{{ zabbix_http_proxy | default(None) | default(omit) }}"
https_proxy: "{{ zabbix_https_proxy | default(None) | default(omit) }}"
register: zabbix_web_php_dependencies_install
until: zabbix_web_php_dependencies_install is succeeded
become: true
when: zabbix_server_database == 'pgsql'
tags:
- install
- dependencies
- database

# In releases older than Debian 12 and Ubuntu 22.04, /etc/apt/keyrings does not exist by default.
# It SHOULD be created with permissions 0755 if it is needed and does not already exist.
# See: https://wiki.debian.org/DebianRepository/UseThirdParty
Expand Down

0 comments on commit 3621324

Please sign in to comment.