Update to 2022-01-04 13:00

This commit is contained in:
Daniel Berteaud 2022-01-04 13:00:10 +01:00
parent 7f440a719d
commit fb2553ae89
3 changed files with 5 additions and 2 deletions

View File

@ -12,4 +12,6 @@
line: "root: {{ system_admin_email }}" line: "root: {{ system_admin_email }}"
notify: newaliases notify: newaliases
tags: postfix,mail
... ...

View File

@ -15,7 +15,7 @@
when: when:
- ansible_virtualization_role == 'host' or ansible_virtualization_type != 'lxc' - ansible_virtualization_role == 'host' or ansible_virtualization_type != 'lxc'
- ansible_os_family == 'RedHat' - ansible_os_family == 'RedHat'
- include_tasks: mail.yml - include: mail.yml
- include_tasks: system.yml - include_tasks: system.yml
- include_tasks: ansible.yml - include_tasks: ansible.yml
- include_tasks: hardware.yml - include_tasks: hardware.yml

View File

@ -1,7 +1,8 @@
--- ---
- name: Add Zabbix repo key - name: Add Zabbix repo key
apt_key: apt_key:
url: https://repo.zabbix.com/zabbix-official-repo.key data: "{{ lookup('url', 'https://repo.zabbix.com/zabbix-official-repo.key', split_lines=False) }}"
environment: environment:
https_proxy: "{{ system_proxy | default('') }}" https_proxy: "{{ system_proxy | default('') }}"
tags: repo tags: repo