From 659c80ccb2cbdec73f570b14adefde2cde23272e Mon Sep 17 00:00:00 2001 From: deflax Date: Tue, 6 Feb 2024 15:01:45 +0200 Subject: [PATCH] install zip and mutt globally --- init.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/init.sh b/init.sh index e52bf37..515fbd2 100755 --- a/init.sh +++ b/init.sh @@ -53,6 +53,9 @@ apt install jq -y # install curl apt install curl -y +# install zip and mutt +apt install mutt zip -y + # create Wireguard interface config bash -c "cat > /etc/wireguard/wg0.conf" << ENDOFFILE [Interface] @@ -222,7 +225,7 @@ else # install postfix echo "postfix postfix/mailname string ${email_origin}" | debconf-set-selections echo "postfix postfix/main_mailer_type string 'Internet Site'" | debconf-set-selections - apt install -y postfix mailutils libsasl2-2 ca-certificates libsasl2-modules mutt zip + apt install -y postfix mailutils libsasl2-2 ca-certificates libsasl2-modules # setup mail server for email reports /usr/sbin/postconf -e "relayhost = [${email_host}]:587" \