fix(known_hosts): dig package does not install on Arch

The conditionnal on `ensure dig is available` does not work on Arch
since the `which` command does not exists. As the `pkg.installed`
state is idempotent, we don't need an extra check which depends on the
environment.

The `dig` utility is provided by `bind` on Arch and no more by
`bind-tools`.
This commit is contained in:
Daniel Dehennin 2020-07-21 11:49:22 +02:00
parent 644e61651d
commit 0b667cbcf5
2 changed files with 1 additions and 2 deletions

View File

@ -5,7 +5,6 @@
ensure dig is available:
pkg.installed:
- name: {{ openssh.dig_pkg }}
- unless: which dig
manage ssh_known_hosts file:
file.managed:

View File

@ -6,7 +6,7 @@ Arch:
server: openssh
client: openssh
service: sshd
dig_pkg: bind-tools
dig_pkg: bind
sshd_config:
Subsystem: sftp /usr/lib/ssh/sftp-server