Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Massimiliano
ISPConfig 3
Commits
a13af292
Commit
a13af292
authored
Aug 14, 2014
by
Till Brehm
Browse files
Added copy commands for security directory to installer.
parent
7c27524f
Changes
4
Hide whitespace changes
Inline
Side-by-side
install/dist/lib/fedora.lib.php
View file @
a13af292
...
...
@@ -832,6 +832,10 @@ class installer_dist extends installer_base {
//* copy the ISPConfig server part
$command
=
"cp -rf ../server
$install_dir
"
;
caselog
(
$command
.
' &> /dev/null'
,
__FILE__
,
__LINE__
,
"EXECUTED:
$command
"
,
"Failed to execute the command
$command
"
);
//* copy the ISPConfig security part
$command
=
'cp -rf ../security '
.
$install_dir
;
caselog
(
$command
.
' &> /dev/null'
,
__FILE__
,
__LINE__
,
"EXECUTED:
$command
"
,
"Failed to execute the command
$command
"
);
//* Create a symlink, so ISPConfig is accessible via web
// Replaced by a separate vhost definition for port 8080
...
...
install/dist/lib/gentoo.lib.php
View file @
a13af292
...
...
@@ -748,6 +748,10 @@ class installer extends installer_base
//* copy the ISPConfig server part
$command
=
"cp -rf ../server
$install_dir
"
;
caselog
(
$command
.
' &> /dev/null'
,
__FILE__
,
__LINE__
,
"EXECUTED:
$command
"
,
"Failed to execute the command
$command
"
);
//* copy the ISPConfig security part
$command
=
'cp -rf ../security '
.
$install_dir
;
caselog
(
$command
.
' &> /dev/null'
,
__FILE__
,
__LINE__
,
"EXECUTED:
$command
"
,
"Failed to execute the command
$command
"
);
//* Create the config file for ISPConfig interface
...
...
install/dist/lib/opensuse.lib.php
View file @
a13af292
...
...
@@ -904,6 +904,10 @@ class installer_dist extends installer_base {
//* copy the ISPConfig server part
$command
=
"cp -rf ../server
$install_dir
"
;
caselog
(
$command
.
' &> /dev/null'
,
__FILE__
,
__LINE__
,
"EXECUTED:
$command
"
,
"Failed to execute the command
$command
"
);
//* copy the ISPConfig security part
$command
=
'cp -rf ../security '
.
$install_dir
;
caselog
(
$command
.
' &> /dev/null'
,
__FILE__
,
__LINE__
,
"EXECUTED:
$command
"
,
"Failed to execute the command
$command
"
);
//* Create a symlink, so ISPConfig is accessible via web
// Replaced by a separate vhost definition for port 8080
...
...
install/lib/installer_base.lib.php
View file @
a13af292
...
...
@@ -1744,6 +1744,10 @@ class installer_base {
//* copy the ISPConfig server part
$command
=
'cp -rf ../server '
.
$install_dir
;
caselog
(
$command
.
' &> /dev/null'
,
__FILE__
,
__LINE__
,
"EXECUTED:
$command
"
,
"Failed to execute the command
$command
"
);
//* copy the ISPConfig security part
$command
=
'cp -rf ../security '
.
$install_dir
;
caselog
(
$command
.
' &> /dev/null'
,
__FILE__
,
__LINE__
,
"EXECUTED:
$command
"
,
"Failed to execute the command
$command
"
);
//* Create a symlink, so ISPConfig is accessible via web
// Replaced by a separate vhost definition for port 8080
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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