Browse Source

Merge branch 'feature/type/__sshd_config/whitelist-openbmc' into 'master'

__sshd_config: Whitelist OpenBMC

See merge request ungleich-public/cdist!980
feature/type-relationship-graph
poljakowski 2 years ago
parent
commit
c55397766e
  1. 7
      cdist/conf/type/__sshd_config/manifest

7
cdist/conf/type/__sshd_config/manifest vendored

@ -39,7 +39,14 @@ in
(freebsd|netbsd|openbsd)
# whitelist
;;
(openbmc-phosphor)
# whitelist
# OpenBMC can be configured with dropbear and OpenSSH.
# If dropbear is used, the state explorer will already fail because it
# cannot find the sshd binary.
;;
(*)
: "${__type:?}" # make shellcheck happy
printf 'Your operating system (%s) is currently not supported by this type (%s)\n' \
"${os}" "${__type##*/}" >&2
printf 'Please contribute an implementation for it if you can.\n' >&2

Loading…
Cancel
Save