Skip to content

Instantly share code, notes, and snippets.

@zzamboni
Created February 16, 2015 22:33
Show Gist options
  • Save zzamboni/284ae2386c1135ba54b5 to your computer and use it in GitHub Desktop.
Save zzamboni/284ae2386c1135ba54b5 to your computer and use it in GitHub Desktop.
start() {
echo -n $"Starting ${NAME}: "
ulimit -n $NFILES
# daemon --pidfile $PID_FILE --user $RIEMANN_USER $DAEMON $DAEMON_OPTS
daemonize -u $RIEMANN_USER -p $PID_FILE -l $LOCK_FILE $DAEMON $DAEMON_OPTS
RETVAL=$?
echo
[ $RETVAL -eq 0 ] && touch $LOCK_FILE
return $RETVAL
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment