insserv: warning: script 'S90dvc-core' missing LSB tags and overrides&dpkg: error processin

insserv: warning: script 'S90dvc-core' missing LSB tags and overrides&dpkg: error processing


sudo apt-get upgrade 过程中出现如上报错,导致很多packages error processing,解决方案如下

解决方案: 对比/etc/init.d中其他文件,修改dvc-core文件如下:

vim  /etc/init.d/dvc-core

#!/bin/sh

### BEGIN INIT INFO
# Provides: dvc-core
# Required-Start: $remote_fs $syslog
# Required-Stop: $remote_fs $syslog
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Stop dvc-core during boot and start it on shutdown
# Description: Dynamic Host Configuration Protocol Server
### END INIT INFO

cd "/bin/LVUAAgentInstBaseRoot"
./dvc-core-exe -d

原文地址:https://www.cnblogs.com/jack-zhou/p/12625119.html