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
1f93c0d6
Commit
1f93c0d6
authored
Mar 12, 2009
by
tbrehm
Browse files
Fixed getmail crontab problem.
parent
27c3a61c
Changes
2
Hide whitespace changes
Inline
Side-by-side
install/dist/lib/fedora.lib.php
View file @
1f93c0d6
...
...
@@ -828,7 +828,7 @@ class installer_dist extends installer_base {
foreach
(
$cron_jobs
as
$key
=>
$val
)
{
if
(
stristr
(
$val
,
'getmail'
))
unset
(
$existing_cron_jobs
[
$key
]);
}
foreach
(
$cron_jobs
as
$cron_job
)
{
if
(
!
in_array
(
$cron_job
.
"
\n
"
,
$existing_cron_jobs
))
{
$existing_cron_jobs
[]
=
$cron_job
.
"
\n
"
;
...
...
install/dist/lib/opensuse.lib.php
View file @
1f93c0d6
...
...
@@ -846,7 +846,7 @@ class installer_dist extends installer_base {
foreach
(
$cron_jobs
as
$key
=>
$val
)
{
if
(
stristr
(
$val
,
'getmail'
))
unset
(
$existing_cron_jobs
[
$key
]);
}
foreach
(
$cron_jobs
as
$cron_job
)
{
if
(
!
in_array
(
$cron_job
.
"
\n
"
,
$existing_cron_jobs
))
{
$existing_cron_jobs
[]
=
$cron_job
.
"
\n
"
;
...
...
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