Browse Source

Merge 5f72ff8957 into 3a56a6cef3

pull/4871/merge
Fabian Raab 1 month ago
committed by GitHub
parent
commit
89ece3b4ef
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 3
      lgsm/modules/check_deps.sh

3
lgsm/modules/check_deps.sh

@ -126,6 +126,9 @@ fn_deps_email() {
array_deps_required+=(exim4)
elif [ -d /etc/sendmail ]; then
array_deps_required+=(sendmail)
elif [ "$(command -v apt 2> /dev/null)" ] && [ -d /etc/nullmailer ]; then
# 'mailutils' provides the 'mail' binary, 'nullmailer' is the MTA
array_deps_required+=(mailutils nullmailer)
elif [ "$(command -v yum 2> /dev/null)" ] || [ "$(command -v dnf 2> /dev/null)" ]; then
array_deps_required+=(s-nail postfix)
elif [ "$(command -v apt 2> /dev/null)" ]; then

Loading…
Cancel
Save