You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
282 B
14 lines
282 B
#!/bin/sh /etc/rc.common
|
|
# photo-bot
|
|
|
|
# Start late in the boot process
|
|
START=80
|
|
STOP=20
|
|
|
|
start() {
|
|
cd /opt/photo-bot/etc/ && start-stop-daemon -c bot -u bot -x /opt/photo-bot/bin/photo-bot -b -S
|
|
}
|
|
|
|
stop() {
|
|
start-stop-daemon -c bot -u bot -x /opt/photo-bot/bin/photo-bot -b -K
|
|
}
|