在 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 中定义,也没有在破折号中定义:
$ type status_of_proc
status_of_proc: not found
虽然如果我在 nginx-script 中插入相同的检查,我会得到以下结果:
status_of_proc is a shell function
并且在初始化文件本身上运行 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
}
然而,将相同的函数调用插入到我自己制作的初始化脚本中返回该函数未定义。所以它与初始化脚本的特殊性无关。之前在 init 脚本中也没有声明它。在网上我读到它是 LSB 的一部分,但我不知道如何称呼它。有人可以帮我弄清楚如何使用这个奇妙的功能吗?
我发现该函数来自
/lib/lsb/init-functions
nginx init 脚本。所以添加:我的初始化脚本解决了这个问题。