Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
lolo888
ISPConfig 3
Commits
f30628b1
Commit
f30628b1
authored
Apr 05, 2014
by
Till Brehm
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed: FS#3359 - rkhunter running twice on Debian
parent
d92cc2fb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
install/lib/installer_base.lib.php
install/lib/installer_base.lib.php
+7
-0
No files found.
install/lib/installer_base.lib.php
View file @
f30628b1
...
...
@@ -2104,6 +2104,13 @@ class installer_base {
//* Remove Domain module as its functions are available in the client module now
if
(
@
is_dir
(
'/usr/local/ispconfig/interface/web/domain'
))
exec
(
'rm -rf /usr/local/ispconfig/interface/web/domain'
);
//* Disable rkhunter run and update in debian cronjob as ispconfig is running and updating rkhunter
if
(
is_file
(
'/etc/default/rkhunter'
))
{
replaceLine
(
'/etc/default/rkhunter'
,
'CRON_DAILY_RUN="yes"'
,
'CRON_DAILY_RUN="no"'
,
1
,
0
);
replaceLine
(
'/etc/default/rkhunter'
,
'CRON_DB_UPDATE="yes"'
,
'CRON_DB_UPDATE="no"'
,
1
,
0
);
}
}
...
...
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