1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
Index: README.1st
===================================================================
RCS file: /usr/local/CVS/apacheconf/README.1st,v
retrieving revision 1.4
diff -u -b -B -r1.4 README.1st
--- README.1st 20 Nov 2006 16:41:44 -0000 1.4
+++ README.1st 15 Jul 2007 03:31:11 -0000
@@ -21,7 +21,7 @@
Small update on the plan of parsing:
As with the newer httpd packages we started supporting and automatically
-including /etc/httpd/conf.d/* in our default setup, so the plan is to
+including /etc/apache2/conf.d/* in our default setup, so the plan is to
store the configuration generated by system-config-httpd in a file (or more
files) in that directory.
Index: system-config-httpd.1
===================================================================
RCS file: /usr/local/CVS/apacheconf/system-config-httpd.1,v
retrieving revision 1.2
diff -u -b -B -r1.2 system-config-httpd.1
--- system-config-httpd.1 11 Jan 2007 11:57:56 -0000 1.2
+++ system-config-httpd.1 15 Jul 2007 03:31:11 -0000
@@ -26,7 +26,7 @@
.SH "BUGS"
Not all possible checks for correct values are done yet.
-The current /etc/httpd/conf/httpd.conf file is \fBNOT\fR parsed, so changing the
+The current /etc/apache2/conf/httpd.conf file is \fBNOT\fR parsed, so changing the
configuration with system-config-httpd will overwrite any manual changes to the httpd.conf file or
the changes done with system-config-httpd are discarded. In case of overwriting the manually
editied file a backup file will be generated.
Index: src/ApacheBase.py
===================================================================
RCS file: /usr/local/CVS/apacheconf/src/ApacheBase.py,v
retrieving revision 1.29
diff -u -b -B -r1.29 ApacheBase.py
--- src/ApacheBase.py 10 Nov 2006 16:43:46 -0000 1.29
+++ src/ApacheBase.py 15 Jul 2007 03:31:12 -0000
@@ -4349,7 +4349,7 @@
# Compute md5sum of currently installed httpd.conf
try:
- rmd5 = hexstr (md5 (open ('/etc/httpd/conf.d/system-config-httpd.conf', 'r').read ()).digest())
+ rmd5 = hexstr (md5 (open ('/etc/apache2/modules.d/system-config-httpd.conf', 'r').read ()).digest())
except:
rmd5 = ''
@@ -4361,14 +4361,14 @@
if omd5 != rmd5:
if force:
try:
- os.remove ('/etc/httpd/conf.d/system-config-httpd.conf.bak')
+ os.remove ('/etc/apache2/modules.d/system-config-httpd.conf.bak')
except:
pass
try:
- os.rename ('/etc/httpd/conf.d/system-config-httpd.conf', '/etc/httpd/conf.d/system-config-httpd.conf.bak')
+ os.rename ('/etc/apache2/modules.d/system-config-httpd.conf', '/etc/apache2/modules.d/system-config-httpd.conf.bak')
except:
pass
- open ('/etc/httpd/conf.d/system-config-httpd.conf', 'w').write (result)
+ open ('/etc/apache2/modules.d/system-config-httpd.conf', 'w').write (result)
open ('/usr/share/system-config-httpd/system-config-httpd.conf.md5', 'w').write (nmd5)
local_box.write (ctx)
return 0
@@ -4377,7 +4377,7 @@
else:
return -2
else:
- open ('/etc/httpd/conf.d/system-config-httpd.conf', 'w').write (result)
+ open ('/etc/apache2/modules.d/system-config-httpd.conf', 'w').write (result)
open ('/usr/share/system-config-httpd/system-config-httpd.conf.md5', 'w').write (nmd5)
local_box.write (ctx)
return 0
Index: src/rpm.xml
===================================================================
RCS file: /usr/local/CVS/apacheconf/src/rpm.xml,v
retrieving revision 1.17
diff -u -b -B -r1.17 rpm.xml
--- src/rpm.xml 10 Nov 2006 16:43:47 -0000 1.17
+++ src/rpm.xml 15 Jul 2007 03:31:12 -0000
@@ -7,10 +7,10 @@
<datatree>
<apache TYPE="LIST">
<serveroptions TYPE="LIST">
- <ServerRoot TYPE="STRING" VALUE="/etc/httpd"/>
+ <ServerRoot TYPE="STRING" VALUE="/etc/apache2"/>
<ServerName TYPE="STRING" VALUE=""/>
<ServerAdmin TYPE="STRING" VALUE="root@localhost"/>
- <CoreDumpDirectory TYPE="STRING" VALUE="/etc/httpd"/>
+ <CoreDumpDirectory TYPE="STRING" VALUE="/etc/apache2"/>
<listener ANONYMOUS="TRUE" ATOMIC="TRUE" TYPE="LIST">
</listener>
<Port TYPE="INT" VALUE="80"/>
|