Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
Open sidebar
ISPConfig
ISPConfig 3
Commits
8d06004c
Commit
8d06004c
authored
Dec 12, 2008
by
tbrehm
Browse files
Open mysql port in firewall by default.
parent
948a842b
Changes
2
Hide whitespace changes
Inline
Side-by-side
install/dist/lib/fedora.lib.php
View file @
8d06004c
...
...
@@ -437,7 +437,7 @@ class installer_dist extends installer_base {
$tcp_public_services
=
trim
(
str_replace
(
','
,
' '
,
$row
[
"tcp_port"
]));
$udp_public_services
=
trim
(
str_replace
(
','
,
' '
,
$row
[
"udp_port"
]));
}
else
{
$tcp_public_services
=
'21 22 25 53 80 110 443 8080 10000'
;
$tcp_public_services
=
'21 22 25 53 80 110 443
3306
8080 10000'
;
$udp_public_services
=
'53'
;
}
$content
=
str_replace
(
"
{
TCP_PUBLIC_SERVICES
}
"
,
$tcp_public_services
,
$content
);
...
...
install/dist/lib/opensuse.lib.php
View file @
8d06004c
...
...
@@ -455,7 +455,7 @@ class installer_dist extends installer_base {
$tcp_public_services
=
trim
(
str_replace
(
','
,
' '
,
$row
[
"tcp_port"
]));
$udp_public_services
=
trim
(
str_replace
(
','
,
' '
,
$row
[
"udp_port"
]));
}
else
{
$tcp_public_services
=
'21 22 25 53 80 110 443 8080 10000'
;
$tcp_public_services
=
'21 22 25 53 80 110 443
3306
8080 10000'
;
$udp_public_services
=
'53'
;
}
$content
=
str_replace
(
"
{
TCP_PUBLIC_SERVICES
}
"
,
$tcp_public_services
,
$content
);
...
...
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