Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
I
ISPConfig 3
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
492
Issues
492
List
Boards
Labels
Service Desk
Milestones
Merge Requests
32
Merge Requests
32
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ISPConfig
ISPConfig 3
Commits
7d8d3735
Commit
7d8d3735
authored
May 09, 2018
by
Till Brehm
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Limit patch requieremnt to servers with amavisd-new
parent
5e43b353
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
install/install.php
install/install.php
+2
-1
install/update.php
install/update.php
+2
-1
No files found.
install/install.php
View file @
7d8d3735
...
...
@@ -97,7 +97,8 @@ require_once 'lib/classes/tpl.inc.php';
die('We will stop here. There is already a ISPConfig installation, use the update script to update this installation.');
}*/
if
(
!
is_installed
(
'patch'
))
die
(
'The patch command is missing. Install patch command and start installation again.'
);
// Patch is required to reapir latest amavis versions
if
(
is_installed
(
'amavisd-new'
)
&&
!
is_installed
(
'patch'
))
die
(
'The patch command is missing. Install patch command and start installation again.'
);
//** Get distribution identifier
$dist
=
get_distname
();
...
...
install/update.php
View file @
7d8d3735
...
...
@@ -98,7 +98,8 @@ if(is_dir('/root/ispconfig') || is_dir('/home/admispconfig')) {
die
(
'This software cannot be installed on a server wich runs ISPConfig 2.x.'
);
}
if
(
!
is_installed
(
'patch'
))
die
(
'The patch command is missing. Install patch command and start installation again.'
);
// Patch is required to reapir latest amavis versions
if
(
is_installed
(
'amavisd-new'
)
&&
!
is_installed
(
'patch'
))
die
(
'The patch command is missing. Install patch command and start update again.'
);
//** Get distribution identifier
$dist
=
get_distname
();
...
...
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