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 e5e4e9a commit 4ef3d01Copy full SHA for 4ef3d01
install/upgrade/manual/migrate_mpm_event.sh
@@ -10,8 +10,8 @@ if [ "$WEB_SYSTEM" != "apache2" ]; then
10
echo "Apache2 isn't installed on your system, canceling migration..." && exit 1
11
fi
12
13
-#Check if PHP-FPM is instaled
14
-if [ "$WEB_BACKEND" != "php-fpm"]; then
+# Check if PHP-FPM is instaled
+if [ "$WEB_BACKEND" != "php-fpm" ]; then
15
echo "PHP-FPM not yet installed please run migrate_apache.sh first" && exit 1
16
17
@@ -29,7 +29,7 @@ changed_a2modules=""
29
30
for module in $a2modules; do
31
a2query -q -m "$module" || continue
32
- a2dismod "$module"
+ a2dismod -q "$module"
33
changed_a2modules="${changed_a2modules} ${module}"
34
done
35
0 commit comments