跨发行版守护进程命令?

跨发行版守护进程命令?

我正在尝试编写一个脚本来在 centos 和 debian 上启动守护进程。

这是当前的伪脚本:

if [ =f "/etc/init.d/functions" ]
  then
    . /etc/unit.d/functions
    alias STARTSTOPDAEMON=daemon
  else
    alias STARTSTOPDAEMON=start-stop-daemon
fi

但是我对别名有两种不同的语法......

我在 pastebin 上找到了这个,我想知道它是否可以跨发行版运行。

http://pastebin.com/P6bCsK4S

有什么建议吗?

相关内容