Avoid package error on Debian

Becase package name is different
This commit is contained in:
Yorick Barbanneau 2022-12-01 00:18:07 +01:00
parent 363de88164
commit 5be1f6749b
2 changed files with 4 additions and 1 deletions

View file

@ -1,4 +1,7 @@
--- ---
mako_package:
Debian: mako-notifier
mako_options: mako_options:
max_history: 5 max_history: 5
sort: -time sort: -time

View file

@ -1,7 +1,7 @@
--- ---
- name: Install Mako package - name: Install Mako package
ansible.builtin.package: ansible.builtin.package:
name: mako name: '{{ mako_package[ansible_distribution] | default("mako")}}'
state: present state: present
become: true become: true