Browse Source

feat: replace mailx with s-nail for email alerts

feature/4426-tf-fixes
Daniel Gibbs 3 months ago
parent
commit
d0fbe4a7b6
  1. 4
      lgsm/modules/check_deps.sh

4
lgsm/modules/check_deps.sh

@ -114,13 +114,13 @@ fn_deps_email() {
elif [ -d /etc/sendmail ]; then elif [ -d /etc/sendmail ]; then
array_deps_required+=(sendmail) array_deps_required+=(sendmail)
elif [ "$(command -v yum 2> /dev/null)" ] || [ "$(command -v dnf 2> /dev/null)" ]; then elif [ "$(command -v yum 2> /dev/null)" ] || [ "$(command -v dnf 2> /dev/null)" ]; then
array_deps_required+=(mailx postfix) array_deps_required+=(s-nail postfix)
elif [ "$(command -v apt 2> /dev/null)" ]; then elif [ "$(command -v apt 2> /dev/null)" ]; then
array_deps_required+=(mailutils postfix) array_deps_required+=(mailutils postfix)
fi fi
else else
if [ "$(command -v yum 2> /dev/null)" ] || [ "$(command -v dnf 2> /dev/null)" ]; then if [ "$(command -v yum 2> /dev/null)" ] || [ "$(command -v dnf 2> /dev/null)" ]; then
array_deps_required+=(mailx postfix) array_deps_required+=(s-nail postfix)
elif [ "$(command -v apt 2> /dev/null)" ]; then elif [ "$(command -v apt 2> /dev/null)" ]; then
array_deps_required+=(mailutils postfix) array_deps_required+=(mailutils postfix)
fi fi

Loading…
Cancel
Save