We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fcdc5f7 commit f9eea6bCopy full SHA for f9eea6b
1 file changed
install/install.sh
@@ -1,10 +1,20 @@
1
#!/bin/bash
2
3
-sudo apt-get update -y && sudo apt-get upgrade -y
+sudo apt-get update -y
4
+sudo apt-get upgrade -y
5
-for i in git fail2ban nano unzip wget curl ufw socat fuse apt-transport-https acl mergerfs ca-certificates; do
6
- sudo apt-get -y install $i
7
-done
+sudo apt-get -y install git
+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
18
19
sudo ufw default deny incoming
20
sudo ufw default allow outgoing
0 commit comments