LSB Script: how do i know if something goes wrong?

Posted by ianaz on Server Fault See other posts from Server Fault or by ianaz
Published on 2012-11-28T10:47:34Z Indexed on 2012/11/28 11:05 UTC
Read the original article Hit count: 232

Filed under:
|

How do I know if a LSB script fails to load or where do I check the log of the lsbs scripts?

I added two scripts with the following command:

update-rc.d scriptname defaults

And just one launches the things I need. It does not seem to be a script error since if I launch it with /etc/init.d/scriptname it works.

This is my script:

#!/bin/bash

### BEGIN INIT INFO
# Provides:          nodes
# Required-Start:    $remote_fs $syslog
# Required-Stop:     $remote_fs $syslog
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: Starts all node apps
# Description:       Starts all node apps like AAM, AMT,...
### END INIT INFO

echo "Launch Node applications with forever"
export PATH=/usr/local/bin:$PATH

# Starts the redis server
redis-server

# Starts AAM
forever -o /var/log/AAM.log -e /var/log/AAM.log --spinSleepTime 2000 -m 5 start /var/nodejs/AAM/app.js

© Server Fault or respective owner

Related posts about debian

Related posts about lsb