1 |
diff -Nur -x '*.orig' -x '*.rej' smeserver-gollem-1.0/root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/87GollemAccess mezzanine_patched_smeserver-gollem-1.0/root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/87GollemAccess |
2 |
--- smeserver-gollem-1.0/root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/87GollemAccess 2006-03-01 08:02:59.000000000 -0600 |
3 |
+++ mezzanine_patched_smeserver-gollem-1.0/root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/87GollemAccess 2006-06-27 23:11:41.000000000 -0500 |
4 |
@@ -1,16 +1,8 @@ |
5 |
{ |
6 |
- use esmith::db; |
7 |
- use esmith::config; |
8 |
+ my $status = $imp{status} || 'disabled'; |
9 |
|
10 |
- local %services; |
11 |
- $services{'imp'} = $imp; |
12 |
- |
13 |
- my $status = db_get_prop(\%services, "imp", "status"); |
14 |
- |
15 |
- if (defined $status) |
16 |
+ if ($status eq 'enabled') |
17 |
{ |
18 |
- if ($status eq 'enabled') |
19 |
- { |
20 |
$OUT .= qq( |
21 |
# Gollem specific access configuration |
22 |
|
23 |
@@ -34,7 +26,6 @@ |
24 |
deny from all |
25 |
</Directory> |
26 |
); |
27 |
- } |
28 |
} |
29 |
} |
30 |
|