From 86c881a63ce94bb378299cde999420608fa6b32d Mon Sep 17 00:00:00 2001 From: "Michael Kaufmann (d00p)" Date: Wed, 4 Aug 2010 11:51:57 +0000 Subject: [PATCH] - use correct commands with apache on Gentoo when creating vhosts-dir/-file --- lib/configfiles/gentoo.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/configfiles/gentoo.inc.php b/lib/configfiles/gentoo.inc.php index c41f5ff6..3e2041a6 100644 --- a/lib/configfiles/gentoo.inc.php +++ b/lib/configfiles/gentoo.inc.php @@ -27,10 +27,10 @@ return Array( 'apache2' => Array( 'label' => 'Apache2 Webserver', 'commands' => Array( - 'touch ' . $settings['system']['apacheconf_vhost'], + $configcommand['vhost'], 'chown root:0 ' . $settings['system']['apacheconf_vhost'], 'chmod 0600 ' . $settings['system']['apacheconf_vhost'], - 'touch ' . $settings['system']['apacheconf_diroptions'], + $configcommand['diroptions'], 'chown root:0 ' . $settings['system']['apacheconf_diroptions'], 'chmod 0600 ' . $settings['system']['apacheconf_diroptions'], 'mkdir -p ' . $settings['system']['documentroot_prefix'],