Add install script
This commit is contained in:
parent
2180265d4c
commit
8af5698976
1 changed files with 29 additions and 0 deletions
29
install.sh
Normal file
29
install.sh
Normal file
|
@ -0,0 +1,29 @@
|
|||
#!/bin/bash
|
||||
set -u
|
||||
DOMAIN=$1
|
||||
USER=$2
|
||||
PASS=$3
|
||||
if [[ -z "$DOMAIN" ]]; then
|
||||
echo "Must provide Domain as 1st argument" 1>&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [[ -z "$USER" ]]; then
|
||||
echo "Must provide User as 2nd argument" 1>&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [[ -z "$PASS" ]]; then
|
||||
echo "Must provide Password as 3rd argument" 1>&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
apt-get -y install ssmtp
|
||||
sed -i -e 's/=mail/=mail.neshweb.net:587/' /etc/ssmtp/ssmtp.conf # replace 'mail' mailhub with actual mailserver
|
||||
sed -i -e 's/hostname=.*/hostname='"$DOMAIN"'/' /etc/ssmtp/ssmtp.conf # replace hostname with actual domain
|
||||
sed -i -e 's/#FromLine/FromLine/' /etc/ssmtp/ssmtp.conf
|
||||
echo "useSTARTTLS=YES\nAuthUser=$USER@$DOMAIN\nAuthPass=$PASS" >> /etc/ssmpt/ssmtp.conf
|
||||
echo "root:noreply@$ALIAS:mail.neshweb.net:587" >> /etc/ssmtp/revaliases # alias 'root' sender to actual noreply sender to be used
|
||||
wget "https://forgejo.neshweb.net/Neshura/disk-warn-script/raw/branch/main/disk-warn.sh" -P /root
|
||||
chmod +x /root/disk-warn.sh
|
||||
(crontab -l 2>/dev/null; echo "0 1 * * * /root/disk-warn.sh") | crontab -
|
Loading…
Add table
Add a link
Reference in a new issue