Add basic postfix satellite installation

This commit is contained in:
Disassembler 2017-09-18 23:04:16 +02:00
parent a097d8e9fe
commit 498b869870

View File

@ -57,6 +57,20 @@ update-initramfs -u
update-grub
#####
# Postfix
#####
# Preconfigure
export DEBIAN_FRONTEND="noninteractive"
echo postfix postfix/main_mailer_type string "Satellite system" | debconf-set-selections
echo postfix postfix/mailname string "$(hostname -f)" | debconf-set-selections
echo postfix postfix/relayhost string "" | debconf-set-selections
# Install packages
apt-get -y --no-install-recommends install postfix
#####
# LXC
#####