내 파이썬 봇을위한 슈퍼 기본 init.d 스크립트를 만들었습니다.
#!/bin/bash
# chkconfig: 2345 20 80
# description: Description comes here....
# Source function library.
. /etc/init.d/functions
start() {
echo "starting torbot"
python /home/ctote/dev/slackbots/torbot/torbot.py
# example: daemon program_name &
}
stop() {
# code to stop app comes here
# example: killproc program_name
}
case "$1" in
start)
start
;;
stop)
stop
;;
restart)
stop
start
;;
status)
# code to check status of app comes here
# example: status program_name
;;
*)
echo "Usage: $0 {start|stop|status|restart}"
esac
그리고 설정 torbot.py
으로 +x
하고 #!/usr/local/bin/python
상단에. 그래도 실제로 시작하려고하면 다음과 같은 결과가 나타납니다.
:/var/lock/subsys$ sudo service torbot start
Failed to start torbot.service: Unit torbot.service not found.
뭔가 빠졌습니까?