Tôi đã tạo một tập lệnh init.d siêu cơ bản cho bot python của mình:
#!/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
Và đã được thiết lập torbot.py
để được +x
và #!/usr/local/bin/python
ở trên cùng. Khi tôi cố gắng thực sự bắt đầu nó, tôi nhận được:
:/var/lock/subsys$ sudo service torbot start
Failed to start torbot.service: Unit torbot.service not found.
Tui bỏ lỡ điều gì vậy?