• The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Debian 7 errors related to Kaspersky Antivirus startup script kavehost

TarasS

Basic Pleskian
I have Plesk 12 panel on Debian 7 server.

When I try to add service to auto start using command:
# update-rc.d nginx defaults
update-rc.d: using dependency based boot sequencing

I got error:
insserv: warning: script 'kavehost' missing LSB tags and overrides
#

Does anybody knows how can it be fixed?
 
Thank you, @IgorG,

I've read wiki recommendations and changed init script /etc/init.d/kavehost header (added lines):

#!/bin/sh

### BEGIN INIT INFO
# Provides: kavehost
# Required-Start: $local_fs $remote_fs $network $syslog
# Required-Stop: $local_fs $remote_fs $network $syslog
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: starts Kaspersky AntiVirus service.
# Description: starts Kaspersky AntiVirus service.
### END INIT INFO

#
 
Back
Top