Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/nextcloudpi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'etc/nextcloudpi-config.d/UFW.sh')
-rw-r--r--etc/nextcloudpi-config.d/UFW.sh12
1 files changed, 6 insertions, 6 deletions
diff --git a/etc/nextcloudpi-config.d/UFW.sh b/etc/nextcloudpi-config.d/UFW.sh
index 25ccda0d..47a9003d 100644
--- a/etc/nextcloudpi-config.d/UFW.sh
+++ b/etc/nextcloudpi-config.d/UFW.sh
@@ -42,24 +42,24 @@ configure()
systemctl enable ufw
systemctl start ufw
- echo "# web server rules"
+ echo -e "\n# web server rules"
ufw allow $HTTP_/tcp
ufw allow $HTTPS_/tcp
ufw allow 4443/tcp
- echo "# SSH rules"
+ echo -e "\n# SSH rules"
ufw allow $SSH_
- echo "# DNS rules"
+ echo -e "\n# DNS rules"
ufw allow dns
- echo "# SAMBA rules"
+ echo -e "\n# SAMBA rules"
ufw allow samba
- echo "# NFS rules"
+ echo -e "\n# NFS rules"
ufw allow nfs
- echo "# UFW enabled"
+ echo "UFW enabled"
}
# License