0
0
mirror of https://github.com/saltstack-formulas/openssh-formula.git synced 2025-08-03 00:13:30 +02:00

fix(map): update debian.yaml in case of debian 13

update dnsutils in case we are on debian13

the package dnsutils is deprecated and replaced by bind9-dnsutils since debian 13 (trixie)
This commit is contained in:
Richard Groux 2025-07-09 12:03:35 +02:00 committed by GROUX Richard
parent 3567e79736
commit bc4f8ecaf6

View File

@ -14,6 +14,9 @@ values:
server: openssh-server
client: openssh-client
service: ssh
{%- if salt['config.get']('osrelease')|int > 12 %}
dig_pkg: bind9-dnsutils
{%- endif %}
sshd_config:
Subsystem: sftp /usr/lib/openssh/sftp-server
...