We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9eea6b commit d26a0aaCopy full SHA for d26a0aa
1 file changed
install/install.sh
@@ -3,18 +3,9 @@
3
sudo apt-get update -y
4
sudo apt-get upgrade -y
5
6
-sudo apt-get -y install git
7
-sudo apt-get -y install fail2ban
8
-sudo apt-get -y install nano
9
-sudo apt-get -y install unzip
10
-sudo apt-get -y install wget
11
-sudo apt-get -y install curl
12
-sudo apt-get -y install ufw
13
-sudo apt-get -y install socat
14
-sudo apt-get -y install fuse
15
-sudo apt-get -y install apt-transport-https
16
-sudo apt-get -y install acl
17
-sudo apt-get -y install ca-certificates
+for i in git fail2ban nano unzip wget curl ufw socat fuse apt-transport-https acl mergerfs ca-certificates; do
+ sudo apt-get -y install $i
+done
18
19
sudo ufw default deny incoming
20
sudo ufw default allow outgoing
0 commit comments