mirror of
https://github.com/nodemailer/wildduck.git
synced 2025-01-08 17:07:44 +08:00
18 lines
472 B
Bash
18 lines
472 B
Bash
#! /bin/bash
|
|
|
|
OURNAME=05_install_packages.sh
|
|
|
|
echo -e "\n-- Executing ${ORANGE}${OURNAME}${NC} subscript --"
|
|
|
|
# install nginx
|
|
apt-get update
|
|
apt-get -q -y install pwgen git ufw build-essential libssl-dev dnsutils python software-properties-common nginx wget
|
|
|
|
# install tor
|
|
apt-get update
|
|
|
|
apt-get -q -y install mongodb-org nodejs tor deb.torproject.org-keyring redis-server clamav clamav-daemon
|
|
|
|
# rspamd
|
|
apt-get -q -y --no-install-recommends install rspamd
|
|
apt-get clean
|