diff --git a/install/dist/lib/gentoo.lib.php b/install/dist/lib/gentoo.lib.php index eb764e1f46504f9dab3e9d90af635c9632a5426b..deb03f30014eeff4edf4f1411934e816e1204279 100644 --- a/install/dist/lib/gentoo.lib.php +++ b/install/dist/lib/gentoo.lib.php @@ -561,7 +561,7 @@ class installer extends installer_base global $conf; //* Create the ispconfig apps vhost user and group - if($conf['apache']['installed'] == true && $this->install_ispconfig_interface == true){ + if($conf['apache']['installed'] == true){ $apps_vhost_user = escapeshellcmd($conf['web']['apps_vhost_user']); $apps_vhost_group = escapeshellcmd($conf['web']['apps_vhost_group']); $install_dir = escapeshellcmd($conf['web']['website_basedir'].'/apps'); @@ -619,7 +619,7 @@ class installer extends installer_base } } - if($conf['nginx']['installed'] == true && $this->install_ispconfig_interface == true){ + if($conf['nginx']['installed'] == true){ $apps_vhost_user = escapeshellcmd($conf['web']['apps_vhost_user']); $apps_vhost_group = escapeshellcmd($conf['web']['apps_vhost_group']); $install_dir = escapeshellcmd($conf['web']['website_basedir'].'/apps'); diff --git a/install/lib/installer_base.lib.php b/install/lib/installer_base.lib.php index cbabdee9a3a167e1b09d328c4a862c4e818371d9..4686aa3a09793cf030dfd491d382678ccfcb802c 100644 --- a/install/lib/installer_base.lib.php +++ b/install/lib/installer_base.lib.php @@ -1420,7 +1420,7 @@ class installer_base { global $conf; //* Create the ispconfig apps vhost user and group - if($conf['apache']['installed'] == true && $this->install_ispconfig_interface == true){ + if($conf['apache']['installed'] == true){ $apps_vhost_user = escapeshellcmd($conf['web']['apps_vhost_user']); $apps_vhost_group = escapeshellcmd($conf['web']['apps_vhost_group']); $install_dir = escapeshellcmd($conf['web']['website_basedir'].'/apps'); @@ -1482,7 +1482,7 @@ class installer_base { } } - if($conf['nginx']['installed'] == true && $this->install_ispconfig_interface == true){ + if($conf['nginx']['installed'] == true){ $apps_vhost_user = escapeshellcmd($conf['web']['apps_vhost_user']); $apps_vhost_group = escapeshellcmd($conf['web']['apps_vhost_group']); $install_dir = escapeshellcmd($conf['web']['website_basedir'].'/apps');