• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    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.

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