1 |
unnilennium |
1.1 |
diff -up smeserver-bugzilla-0.1/root/etc/e-smith/templates/usr/share/bugzilla/localconfig/10createhtaccess.localconfig smeserver-bugzilla-0.1/root/etc/e-smith/templates/usr/share/bugzilla/localconfig/10createhtaccess |
2 |
|
|
--- smeserver-bugzilla-0.1/root/etc/e-smith/templates/usr/share/bugzilla/localconfig/10createhtaccess.localconfig 2009-12-05 13:44:03.000000000 +0100 |
3 |
|
|
+++ smeserver-bugzilla-0.1/root/etc/e-smith/templates/usr/share/bugzilla/localconfig/10createhtaccess 2009-12-05 13:39:53.000000000 +0100 |
4 |
|
|
@@ -0,0 +1,13 @@ |
5 |
|
|
+# If you are using Apache as your web server, Bugzilla can create .htaccess |
6 |
|
|
+# files for you that will instruct Apache not to serve files that shouldn't |
7 |
|
|
+# be accessed from the web browser (like your local configuration data and non-cgi |
8 |
|
|
+# executable files). For this to work, the directory your Bugzilla |
9 |
|
|
+# installation is in must be within the jurisdiction of a <Directory> block |
10 |
|
|
+# in the httpd.conf file that has 'AllowOverride Limit' in it. If it has |
11 |
|
|
+# 'AllowOverride All' or other options with Limit, that's fine. |
12 |
|
|
+# (Older Apache installations may use an access.conf file to store these |
13 |
|
|
+# <Directory> blocks.) |
14 |
|
|
+# If this is set to 1, Bugzilla will create these files if they don't exist. |
15 |
|
|
+# If this is set to 0, Bugzilla will not create these files. |
16 |
|
|
+$create_htaccess = 1; |
17 |
|
|
+ |
18 |
|
|
diff -up smeserver-bugzilla-0.1/root/etc/e-smith/templates/usr/share/bugzilla/localconfig/20apachegroup.localconfig smeserver-bugzilla-0.1/root/etc/e-smith/templates/usr/share/bugzilla/localconfig/20apachegroup |
19 |
|
|
--- smeserver-bugzilla-0.1/root/etc/e-smith/templates/usr/share/bugzilla/localconfig/20apachegroup.localconfig 2009-12-05 13:44:03.000000000 +0100 |
20 |
|
|
+++ smeserver-bugzilla-0.1/root/etc/e-smith/templates/usr/share/bugzilla/localconfig/20apachegroup 2009-12-05 13:40:03.000000000 +0100 |
21 |
|
|
@@ -0,0 +1,12 @@ |
22 |
|
|
+# This is the group your web server runs as. |
23 |
|
|
+# If you have a Windows box, ignore this setting. |
24 |
|
|
+# If you do not have access to the group your web server runs under, |
25 |
|
|
+# set this to "". If you do set this to "", then your Bugzilla installation |
26 |
|
|
+# will be _VERY_ insecure, because some files will be world readable/writable, |
27 |
|
|
+# and so anyone who can get local access to your machine can do whatever they |
28 |
|
|
+# want. You should only have this set to "" if this is a testing installation |
29 |
|
|
+# and you cannot set this up any other way. YOU HAVE BEEN WARNED! |
30 |
|
|
+# If you set this to anything other than "", you will need to run checksetup.pl |
31 |
|
|
+# asroot, or as a user who is a member of the specified group. |
32 |
|
|
+$webservergroup = 'www'; |
33 |
|
|
+ |
34 |
|
|
diff -up smeserver-bugzilla-0.1/root/etc/e-smith/templates/usr/share/bugzilla/localconfig/30database.localconfig smeserver-bugzilla-0.1/root/etc/e-smith/templates/usr/share/bugzilla/localconfig/30database |
35 |
|
|
--- smeserver-bugzilla-0.1/root/etc/e-smith/templates/usr/share/bugzilla/localconfig/30database.localconfig 2009-12-05 13:44:03.000000000 +0100 |
36 |
|
|
+++ smeserver-bugzilla-0.1/root/etc/e-smith/templates/usr/share/bugzilla/localconfig/30database 2009-12-05 13:41:17.000000000 +0100 |
37 |
|
|
@@ -0,0 +1,37 @@ |
38 |
|
|
+# What SQL database to use. Default is mysql. List of supported databases |
39 |
|
|
+# can be obtained by listing Bugzilla/DB directory - every module corresponds |
40 |
|
|
+# to one supported database and the name corresponds to a driver name. |
41 |
|
|
+$db_driver = 'mysql'; |
42 |
|
|
+ |
43 |
|
|
+# The DNS name of the host that the database server runs on. |
44 |
|
|
+$db_host = 'localhost'; |
45 |
|
|
+ |
46 |
|
|
+# The name of the database |
47 |
|
|
+$db_name = '{$bugzilla{'DbDatabase'}}'; |
48 |
|
|
+ |
49 |
|
|
+# Who we connect to the database as. |
50 |
|
|
+$db_user = '{$bugzilla{'DbUser'}}'; |
51 |
|
|
+ |
52 |
|
|
+# Enter your database password here. It's normally advisable to specify |
53 |
|
|
+# a password for your bugzilla database user. |
54 |
|
|
+# If you use apostrophe (') or a backslash (\) in your password, you'll |
55 |
|
|
+# need to escape it by preceding it with a '\' character. (\') or (\) |
56 |
|
|
+# (Far simpler just not to use those characters.) |
57 |
|
|
+$db_pass = '{$bugzilla{'DbPassword'}}'; |
58 |
|
|
+ |
59 |
|
|
+# Sometimes the database server is running on a non-standard port. If that's |
60 |
|
|
+# the case for your database server, set this to the port number that your |
61 |
|
|
+# database server is running on. Setting this to 0 means "use the default |
62 |
|
|
+# port for my database server." |
63 |
|
|
+$db_port = 0; |
64 |
|
|
+ |
65 |
|
|
+# MySQL Only: Enter a path to the unix socket for MySQL. If this is |
66 |
|
|
+# blank, then MySQL's compiled-in default will be used. You probably |
67 |
|
|
+# want that. |
68 |
|
|
+$db_sock = ''; |
69 |
|
|
+ |
70 |
|
|
+# Should checksetup.pl try to verify that your database setup is correct? |
71 |
|
|
+# (with some combinations of database servers/Perl modules/moonphase this |
72 |
|
|
+# doesn't work) |
73 |
|
|
+$db_check = 1; |
74 |
|
|
+ |
75 |
|
|
diff -up smeserver-bugzilla-0.1/root/etc/e-smith/templates/usr/share/bugzilla/localconfig/40index.localconfig smeserver-bugzilla-0.1/root/etc/e-smith/templates/usr/share/bugzilla/localconfig/40index |
76 |
|
|
--- smeserver-bugzilla-0.1/root/etc/e-smith/templates/usr/share/bugzilla/localconfig/40index.localconfig 2009-12-05 13:44:03.000000000 +0100 |
77 |
|
|
+++ smeserver-bugzilla-0.1/root/etc/e-smith/templates/usr/share/bugzilla/localconfig/40index 2009-12-05 13:45:17.000000000 +0100 |
78 |
|
|
@@ -0,0 +1,12 @@ |
79 |
|
|
+# With the introduction of a configurable index page using the |
80 |
|
|
+# template toolkit, Bugzilla's main index page is now index.cgi. |
81 |
|
|
+# Most web servers will allow you to use index.cgi as a directory |
82 |
|
|
+# index, and many come preconfigured that way, but if yours doesn't |
83 |
|
|
+# then you'll need an index.html file that provides redirection |
84 |
|
|
+# to index.cgi. Setting $index_html to 1 below will allow |
85 |
|
|
+# checksetup.pl to create one for you if it doesn't exist. |
86 |
|
|
+# NOTE: checksetup.pl will not replace an existing file, so if you |
87 |
|
|
+# wish to have checksetup.pl create one for you, you must |
88 |
|
|
+# make sure that index.html doesn't already exist |
89 |
|
|
+$index_html = 0; |
90 |
|
|
+ |
91 |
|
|
diff -up smeserver-bugzilla-0.1/root/etc/e-smith/templates/usr/share/bugzilla/localconfig/50cvs.localconfig smeserver-bugzilla-0.1/root/etc/e-smith/templates/usr/share/bugzilla/localconfig/50cvs |
92 |
|
|
--- smeserver-bugzilla-0.1/root/etc/e-smith/templates/usr/share/bugzilla/localconfig/50cvs.localconfig 2009-12-05 13:44:03.000000000 +0100 |
93 |
|
|
+++ smeserver-bugzilla-0.1/root/etc/e-smith/templates/usr/share/bugzilla/localconfig/50cvs 2009-12-05 13:45:07.000000000 +0100 |
94 |
|
|
@@ -0,0 +1,6 @@ |
95 |
|
|
+# For some optional functions of Bugzilla (such as the pretty-print patch |
96 |
|
|
+# viewer), we need the cvs binary to access files and revisions. |
97 |
|
|
+# Because it's possible that this program is not in your path, you can specify |
98 |
|
|
+# its location here. Please specify the full path to the executable. |
99 |
|
|
+$cvsbin = '/usr/bin/cvs'; |
100 |
|
|
+ |
101 |
|
|
diff -up smeserver-bugzilla-0.1/root/etc/e-smith/templates/usr/share/bugzilla/localconfig/60interdiff.localconfig smeserver-bugzilla-0.1/root/etc/e-smith/templates/usr/share/bugzilla/localconfig/60interdiff |
102 |
|
|
--- smeserver-bugzilla-0.1/root/etc/e-smith/templates/usr/share/bugzilla/localconfig/60interdiff.localconfig 2009-12-05 13:44:03.000000000 +0100 |
103 |
|
|
+++ smeserver-bugzilla-0.1/root/etc/e-smith/templates/usr/share/bugzilla/localconfig/60interdiff 2009-12-05 13:50:33.000000000 +0100 |
104 |
|
|
@@ -0,0 +1,6 @@ |
105 |
|
|
+# For some optional functions of Bugzilla (such as the pretty-print patch |
106 |
|
|
+# viewer), we need the interdiff binary to make diffs between two patches. |
107 |
|
|
+# Because it's possible that this program is not in your path, you can specify |
108 |
|
|
+# its location here. Please specify the full path to the executable. |
109 |
|
|
+$interdiffbin = '/usr/bin/interdiff'; |
110 |
|
|
+ |
111 |
|
|
diff -up smeserver-bugzilla-0.1/root/etc/e-smith/templates/usr/share/bugzilla/localconfig/65diffpath.localconfig smeserver-bugzilla-0.1/root/etc/e-smith/templates/usr/share/bugzilla/localconfig/65diffpath |
112 |
|
|
--- smeserver-bugzilla-0.1/root/etc/e-smith/templates/usr/share/bugzilla/localconfig/65diffpath.localconfig 2009-12-05 13:44:03.000000000 +0100 |
113 |
|
|
+++ smeserver-bugzilla-0.1/root/etc/e-smith/templates/usr/share/bugzilla/localconfig/65diffpath 2009-12-05 13:44:59.000000000 +0100 |
114 |
|
|
@@ -0,0 +1,4 @@ |
115 |
|
|
+# The interdiff feature needs diff, so we have to have that path. |
116 |
|
|
+# Please specify the directory name only; do not use trailing slash. |
117 |
|
|
+$diffpath = '/usr/bin'; |
118 |
|
|
+ |
119 |
|
|
diff -up smeserver-bugzilla-0.1/root/etc/e-smith/templates/usr/share/bugzilla/localconfig/99sidewidesecret.localconfig smeserver-bugzilla-0.1/root/etc/e-smith/templates/usr/share/bugzilla/localconfig/99sidewidesecret |
120 |
|
|
--- smeserver-bugzilla-0.1/root/etc/e-smith/templates/usr/share/bugzilla/localconfig/99sidewidesecret.localconfig 2009-12-05 13:44:03.000000000 +0100 |
121 |
|
|
+++ smeserver-bugzilla-0.1/root/etc/e-smith/templates/usr/share/bugzilla/localconfig/99sidewidesecret 2009-12-05 13:52:21.000000000 +0100 |
122 |
|
|
@@ -0,0 +1,6 @@ |
123 |
|
|
+# This secret key is used by your installation for the creation and |
124 |
|
|
+# validation of encrypted tokens to prevent unsolicited changes, |
125 |
|
|
+# such as bug changes. A random string is generated by default. |
126 |
|
|
+# It's very important that this key is kept secret. It also must be |
127 |
|
|
+# very long. |
128 |
|
|
+$site_wide_secret = '{ esmith::util::LdapPassword (); }'; |
129 |
|
|
diff -up smeserver-bugzilla-0.1/root/etc/e-smith/templates.metadata/usr/share/bugzilla/localconfig.localconfig |
130 |
|
|
smeserver-bugzilla-0.1/root/etc/e-smith/templates.metadata/usr/share/bugzilla/localconfig |
131 |
|
|
--- smeserver-bugzilla-0.1/root/etc/e-smith/templates.metadata/usr/share/bugzilla/localconfig.localconfig |
132 |
|
|
2009-12-05 14:33:28.000000000 +0100 |
133 |
|
|
+++ smeserver-bugzilla-0.1/root/etc/e-smith/templates.metadata/usr/share/bugzilla/localconfig 2009-12-05 |
134 |
|
|
14:34:58.000000000 +0100 |
135 |
|
|
@@ -0,0 +1,3 @@ |
136 |
|
|
+UID="root" |
137 |
|
|
+GID="www" |
138 |
|
|
+PERMS=0640 |