webapps/evoadmin-mail: package can now installed via public.evolix.org/evolix repo starting from Bookworm #172

Closed
whirigoyen wants to merge 22 commits from evoadmin-mail-repo into unstable
2 changed files with 18 additions and 0 deletions
Showing only changes of commit 8732763697 - Show all commits

View file

@ -18,6 +18,7 @@ The **patch** part changes is incremented if multiple releases happen the same m
* nagios-nrpe: add check_sentinel for monitoring Redis Sentinel
* webapps/nextcloud: Added var nextcloud_user_uid to enforce uid for nextcloud user
* etc-git: add /var/chroot-bind/etc/bind repo
* webapps/evoadmin-mail: package can now installed via public.evolix.org/evolix repo starting from Bookworm
### Changed

View file

@ -4,10 +4,27 @@
ansible.builtin.include_role:
name: evolix/remount-usr
- name: Get evoadmin-mail package
ansible.builtin.get_url:
url: https://pub.evolix.org/evolix/pool/main/e/evoadmin-mail/evoadmin-mail_1.0.9-1_all.deb
dest: /tmp/evoadmin-mail.deb
when: ansible_distribution_major_version is version('12', '<')
tags:
- evoadmin-mail
- name: Install evoadmin-mail package
ansible.builtin.apt:
deb: /tmp/evoadmin-mail.deb
state: present
when: ansible_distribution_major_version is version('12', '<')
tags:
- evoadmin-mail
- name: Install evoadmin-mail package
ansible.builtin.apt:
name: evoadmin-mail
state: present
when: ansible_distribution_major_version is version('12', '>=')
tags:
- evoadmin-mail