Jelajahi Sumber

Removing mailx detection

so it can add required packages check anyways
lrob 10 tahun lalu
induk
melakukan
1b294aad69
1 mengubah file dengan 4 tambahan dan 6 penghapusan
  1. 4 6
      functions/check_deps.sh

+ 4 - 6
functions/check_deps.sh

@@ -44,12 +44,10 @@ if [ "${emailnotification}" == "on" ]; then
 		array_deps_required+=( exim4 )
 		array_deps_required+=( exim4 )
 	elif [ -d /etc/sendmail ]; then
 	elif [ -d /etc/sendmail ]; then
 		array_deps_required+=( sendmail )
 		array_deps_required+=( sendmail )
-	elif [ ! -f /usr/bin/mailx ]; then
-		if [ -n "$(command -v dpkg-query)" ]; then
-			array_deps_required+=( mailutils postfix )
-		elif [ -n "$(command -v yum)" ]; then
-			array_deps_required+=( mailx postfix )
-		fi
+	elif [ -n "$(command -v dpkg-query)" ]; then
+		array_deps_required+=( mailutils postfix )
+	elif [ -n "$(command -v yum)" ]; then
+		array_deps_required+=( mailx postfix )
 	fi	
 	fi	
 fi
 fi
 }
 }