We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 893292b commit 4cfe596Copy full SHA for 4cfe596
unit6_fix_sp24.sh
100644
100755
@@ -80,6 +80,15 @@ else
80
echo -e "${green}[APACHE2]${none} Apache2 is already disabled."
81
fi
82
83
+#### Check if nginx is running
84
+NGINX_ACTIVE=$(systemctl is-active nginx)
85
+if [[ "$NGINX_ACTIVE" == "active" ]]; then
86
+ echo -e "${yellow}[NGINX]${none} Stopping NGINX"
87
+ sudo service nginx stop
88
+else
89
+ echo -e "${green}[NGINX]${none} Nginx is already stopped."
90
+fi
91
+
92
#### CATALYST LOCAL INSTALL: CATALYST
93
CATALYST_INSTALLED=$(docker compose ls -q --filter name=catalyst-setup-sp24-main)
94
if [ -n "$CATALYST_INSTALLED" ]; then
0 commit comments