wildduck/setup/05_install_packages.sh

22 lines
535 B
Bash
Raw Normal View History

#! /bin/bash
OURNAME=05_install_packages.sh
echo -e "\n-- Executing ${ORANGE}${OURNAME}${NC} subscript --"
# install nginx
apt-get update
2018-08-06 14:27:36 +08:00
apt-get -q -y install pwgen git ufw build-essential libssl-dev dnsutils python software-properties-common nginx wget
# install tor
apt-get update
2018-08-06 15:06:27 +08:00
apt-get -q -y install mongodb-org nodejs redis-server clamav clamav-daemon
# uncomment if you want to support tor
#apt-get -q -y install tor deb.torproject.org-keyring
# rspamd
apt-get -q -y --no-install-recommends install rspamd
apt-get clean