如何将内部脚本参数传递给start-stop-deamon?

时间:2018-06-25 11:17:54

标签: shell parameters daemon start-stop-daemon

我对这个东西并不陌生,但是我有一个问题,我正在尝试编写通常的启动和停止功能,例如

    start() { 
         start-stop-daemon --quiet --start --user ${USER} --exec ${BINARY} --pid ${PID}
 }

主要问题是我尝试运行的脚本具有自己的参数,例如

./script.py --pid=<pid_here> --user=<user_here> --config=<config_here>

因此它倾向于忽略start-stop-daemon选项,是否有办法使脚本由start-stop-daemon控制而不是由脚本选项本身控制?

0 个答案:

没有答案