diff options
author | Antoine Ginies <aginies@mandriva.com> | 2005-07-19 07:58:27 +0000 |
---|---|---|
committer | Antoine Ginies <aginies@mandriva.com> | 2005-07-19 07:58:27 +0000 |
commit | 08e2a46d016fc2d2ac902b8aa1d7633e5e5e4816 (patch) | |
tree | 8549f6d5c1ed2a72e5b8dc1efdebd5624c45ae3f | |
parent | f6e00d7a8b584059e6d2349116bb34e6a1dd1f37 (diff) | |
download | drakwizard-08e2a46d016fc2d2ac902b8aa1d7633e5e5e4816.tar drakwizard-08e2a46d016fc2d2ac902b8aa1d7633e5e5e4816.tar.gz drakwizard-08e2a46d016fc2d2ac902b8aa1d7633e5e5e4816.tar.bz2 drakwizard-08e2a46d016fc2d2ac902b8aa1d7633e5e5e4816.tar.xz drakwizard-08e2a46d016fc2d2ac902b8aa1d7633e5e5e4816.zip |
fix unwanted " DocumentRoot
-rwxr-xr-x | web_wizard/Apache.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/web_wizard/Apache.pm b/web_wizard/Apache.pm index 876c7bb1..6fe4b1a6 100755 --- a/web_wizard/Apache.pm +++ b/web_wizard/Apache.pm @@ -54,6 +54,7 @@ my $o = { if (/^\s*#?\s*DocumentRoot\s+(.*)/) { close($FH); $root = $1; + $root =~ s/\"//g; last; } } @@ -209,7 +210,7 @@ sub chg_user_dir { <IfModule mod_userdir.c> UserDir disabled </IfModule> - + <Directory /home/*/> AllowOverride FileInfo AuthConfig Limit Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec |