You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
QA/tests/p_sendmail/0-install_sendmail.sh

15 lines
300 B

#!/bin/bash
# Author: Athmane Madjoudj <athmanem@gmail.com>
t_Log "Running $0 - remove unused MTAs and install sendmail"
t_InstallPackage sendmail nc
# Remove other MTAs
t_ServiceControl postfix stop
t_ServiceControl exim stop
sleep 3
t_RemovePackage postfix exim
t_ServiceControl sendmail start