From 42f0c93c2aeb981c3b9ee98bb484ffefc5ac9c1d Mon Sep 17 00:00:00 2001
From: Till Brehm <tbrehm@ispconfig.org>
Date: Thu, 07 May 2015 11:43:59 -0400
Subject: [PATCH] Fixed: FS#3888 - APS installer: String could not be parsed as XML

---
 helper_scripts/gentoo_setup.sh |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/helper_scripts/gentoo_setup.sh b/helper_scripts/gentoo_setup.sh
index 9e78b6d..3c736a3 100644
--- a/helper_scripts/gentoo_setup.sh
+++ b/helper_scripts/gentoo_setup.sh
@@ -408,7 +408,7 @@
 	
 	is_package_installed "www-misc/awstats" "vhosts apache2" || package_list="$package_list www-misc/awstats"
 	
-	if ! is_package_installed "app-admin/vlogger"
+	if ! is_package_installed "app-admin/vlogger" "dbi"
 	then
 		# Check if package is masked
 		if [ -n "$(equery -C -N list -I -o -e app-admin/vlogger | grep app-admin/vlogger | awk '{print $2}' | grep '^\[M')" ]
@@ -446,6 +446,10 @@
 	
 	is_package_installed "sys-auth/pam_mysql" || package_list="$package_list sys-auth/pam_mysql"
 	
+	is_package_installed "app-admin/sudo" || package_list="$package_list app-admin/sudo"
+	
+	is_package_installed "app-arch/zip" || package_list="$package_list app-arch/zip"
+	
 	if ! is_package_installed "app-admin/jailkit"
 	then
 		# Check if package is masked

--
Gitblit v1.9.1