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 133b3a6 commit e5e4e9aCopy full SHA for e5e4e9a
install/upgrade/manual/migrate_mpm_event.sh
@@ -10,6 +10,11 @@ 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
15
+ echo "PHP-FPM not yet installed please run migrate_apache.sh first" && exit 1
16
+fi
17
+
18
# Check if mod_event is already enabled
19
if [ $(a2query -M) = 'event' ]; then
20
echo "mod_event is already enabled, canceling migration..." && exit 1
0 commit comments