bstinson / centos / t_functional

Forked from centos/t_functional 3 years ago
Clone
Blob Blame History Raw
#!/bin/bash
# Author: Athmane Madjoudj <athmanem@gmail.com>

# Postfix
t_InstallPackage postfix

# Removing other MTA
t_ServiceControl sendmail stop
sleep 3
t_RemovePackage sendmail
if (t_GetPkgRel basesystem | grep -q el5)
then
  t_ServiceControl exim stop
  sleep 3
  t_RemovePackage exim
fi

t_ServiceControl postfix start