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
bd2e246a
Commit
bd2e246a
authored
Jun 08, 2015
by
Jeff Fearn
Committed by
Byron Jones
Jun 08, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 1164761: Add a couple of extra options to checksetup to skip some actions
r=glob,a=glob
parent
db6b722d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
checksetup.pl
checksetup.pl
+9
-2
No files found.
checksetup.pl
View file @
bd2e246a
...
...
@@ -43,7 +43,8 @@ init_console();
my
%
switch
;
GetOptions
(
\%
switch
,
'help|h|?'
,
'check-modules'
,
'cpanfile'
,
'no-templates|t'
,
'verbose|v|no-silent'
,
'make-admin=s'
,
'reset-password=s'
,
'version|V'
);
'make-admin=s'
,
'reset-password=s'
,
'version|V'
,
'no-permissions|p'
);
# Print the help message if that switch was selected.
pod2usage
({
-
verbose
=>
1
,
-
exitval
=>
1
})
if
$switch
{
'help'
};
...
...
@@ -150,7 +151,7 @@ Bugzilla::Template::precompile_templates(!$silent)
# Set proper rights (--CHMOD--)
###########################################################################
fix_all_file_permissions
(
!
$silent
);
fix_all_file_permissions
(
!
$silent
)
unless
$switch
{
'no-permissions'
}
;
###########################################################################
# Check GraphViz setup
...
...
@@ -301,6 +302,12 @@ Output results of SCRIPT being processed.
Display the version of Bugzilla, Perl, and some info about the
system that Bugzilla is being installed on, and then exit.
=item B<--no-permissions> (B<-p>)
Don't update file permissions. Owner, group, and mode of files and
directories will not be changed. Use this if your installation is
managed by a software packaging system such as RPM or APT.
=back
=head1 DESCRIPTION
...
...
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