prerm
来自「ntop网络监控软件,使用方面」· 代码 · 共 14 行
TXT
14 行
#!/bin/sh -e# Only shut the daemon down if we're really removing the package. If this is# an upgrade, we will instead do a restart in the postinst... this keeps nprobe# from being left shut down for a long time, which could pose problems.case "$1" inupgrade) ;;*) /etc/init.d/ntop stop ;;esac
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?