Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
4efda1a4
Commit
4efda1a4
authored
Jan 30, 2000
by
terry%mozilla.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't regenerate the shadow database until we're sure that our DB is
up to snuff with what processmail expects.
parent
6e5f5251
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
2 deletions
+11
-2
checksetup.pl
checksetup.pl
+11
-2
No files found.
checksetup.pl
View file @
4efda1a4
...
...
@@ -1067,6 +1067,10 @@ sub DropField ($$)
}
my
$regenerateshadow
=
0
;
# 1999-05-12 Added a pref to control how much email you get. This needs a new
# column in the profiles table, so feed the following to mysql:
...
...
@@ -1308,8 +1312,7 @@ if (GetFieldDef('bugs', 'long_desc')) {
DropField
(
'bugs'
,
'long_desc'
);
$dbh
->
do
(
"UNLOCK TABLES"
);
print
"Now regenerating the shadow database for all bugs.\n"
;
system
(
"./processmail regenerate"
);
$regenerateshadow
=
1
;
}
...
...
@@ -1430,3 +1433,9 @@ AddField('namedqueries', 'linkinfooter', 'tinyint not null');
# AddField/DropField/ChangeFieldType/RenameField code above. This would then
# be honored by everyone who updates his Bugzilla installation.
#
#
# Final checks...
if
(
$regenerateshadow
)
{
print
"Now regenerating the shadow database for all bugs.\n"
;
system
(
"./processmail regenerate"
);
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment