blob: d372348b87a05966b0babfaaa9dc8f63519feb32 (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/bash
# To be called from start-stop-daemon
DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
cd "$DIR" && \
source "$DIR"/env.sh && \
exec "$DIR/$APP" >> ${LOG}/mandible.log 2 >> ${LOG}/mandible.err
|