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