Closed
Bug 387374
Opened 17 years ago
Closed 17 years ago
Testopia 1.3 owner:group are not properly set by checksetup.pl
Categories
(Testopia :: General, defect)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: daviswj, Assigned: vrb)
Details
User-Agent: Opera/9.21 (Windows NT 5.1; U; en)
Build Identifier: Testopia 1.3 Beta1
On a Fedora Core 6 linux box, executed "tar -xzvf testopia-1.3-BETA1.tar.gz" to extract testopia into my "bugzilla-3.0" directory. After ensuring files were properly patched & successfully running checksetup.pl, found various aspects of testopia non-functional (especially those dependent on "dojo").
Discovered the owner:group for all testopia files set to 1000:user. Executing "chown -R root:apache ./testopia" set all testopia file ownership to root:apache and corrected the problem making Testopia fully functional.
Reproducible: Didn't try
Steps to Reproduce:
1.
2.
3.
Expected Results:
executing checksetup.pl should verify & reset as needed testopia file ownership.
Assignee | ||
Updated•17 years ago
|
Assignee: ghendricks → vrb
Assignee | ||
Updated•17 years ago
|
Status: UNCONFIRMED → ASSIGNED
Ever confirmed: true
Assignee | ||
Comment 1•17 years ago
|
||
checksetup.pl actually doesn't change the ownership of files/dirs, but it does need to change permission bits and group ID.
Assignee | ||
Comment 2•17 years ago
|
||
r3094 | vrb | 2007-07-16 12:18:27 -0600 (Mon, 16 Jul 2007) | 5 lines
Changed paths:
M /trunk/Bugzilla/Install/Filesystem.pm
Added $libdir/testopia to the readable directories
section of %recurse_dirs
Assignee | ||
Comment 3•17 years ago
|
||
Index: Bugzilla/Install/Filesystem.pm
===================================================================
--- Bugzilla/Install/Filesystem.pm (revision 3093)
+++ Bugzilla/Install/Filesystem.pm (revision 3094)
@@ -152,6 +152,8 @@
dirs => $ws_dir_readable },
"$libdir/Bugzilla" => { files => $ws_readable,
dirs => $ws_dir_readable },
+ "$libdir/testopia" => { files => $ws_readable,
+ dirs => $ws_dir_readable },
$templatedir => { files => $ws_readable,
dirs => $ws_dir_readable },
images => { files => $ws_readable,
Comment 4•17 years ago
|
||
Checking in extensions/testopia/code/install-update_db.pl;
/cvsroot/mozilla/webtools/testopia/extensions/testopia/code/install-update_db.pl,v <-- install-update_db.pl
new revision: 1.4; previous revision: 1.3
Status: ASSIGNED → RESOLVED
Closed: 17 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•