15 lines
338 B
Plaintext
15 lines
338 B
Plaintext
{% if grains['os_family'] == 'Debian' %}
|
|
{% set MYKERNEL = salt['grains.get']('kernelrelease') %}
|
|
Installation des paquets pour toute Debian:
|
|
pkg.installed:
|
|
- pkgs:
|
|
- p7zip
|
|
- dnsutils
|
|
- ethtool
|
|
{% if 'pve' in MYKERNEL %}
|
|
# Do Nothing
|
|
{% else %}
|
|
- jitsi-meet
|
|
{% endif %}
|
|
{% endif %}
|