在 Debian 7(Wheezy)中的 nginx 初始化脚本中我读到了以下摘录:
status)
status_of_proc -p /var/run/$NAME.pid "$DAEMON" nginx && exit 0 || exit $?
;;
此代码运行正常并sudo service nginx status
输出[ ok ] nginx is running
。但status_of_proc
在 bash 中没有定义,在 dash 中也没有定义:
$ type status_of_proc
status_of_proc: not found
但是如果我将相同的检查插入到 nginx-script 中我会得到以下结果:
status_of_proc is a shell function
在 init 文件上运行 bash 提供了进一步的解释:
status_of_proc is a function
status_of_proc ()
{
local pidfile daemon name status OPTIND;
pidfile=;
OPTIND=1;
while getopts p: opt; do
case "$opt" in
p)
pidfile="$OPTARG"
;;
esac;
done;
shift $(($OPTIND - 1));
if [ -n "$pidfile" ]; then
pidfile="-p $pidfile";
fi;
daemon="$1";
name="$2";
status="0";
pidofproc $pidfile $daemon > /dev/null || status="$?";
if [ "$status" = 0 ]; then
log_success_msg "$name is running";
return 0;
else
if [ "$status" = 4 ]; then
log_failure_msg "could not access PID file for $name";
return $status;
else
log_failure_msg "$name is not running";
return $status;
fi;
fi
}
然而,将相同的函数调用插入到我自己编写的初始化脚本中,结果返回该函数未定义。所以这与初始化脚本的特殊性无关。它也没有在初始化脚本中预先声明过。我在网上看到它是 LSB 的一部分,但我不知道如何调用它。有人能帮我弄清楚如何使用这个很棒的函数吗?
答案1
我发现该函数源自/lib/lsb/init-functions
nginx init 脚本。因此添加:
. /lib/lsb/init-functions
我的初始化脚本解决了这个问题。