Fixed placement of inclusion of overrides file

In the last commit I mistakenly placed the inclusion of the "overrides" file _after_ the $DAEMON variable test instead of before it as I meant to do.
This commit is contained in:
Deoren Moor 2015-08-03 00:51:21 -05:00
parent 6f2a9f4a02
commit 194fbe3776
1 changed files with 2 additions and 2 deletions

View File

@ -22,11 +22,11 @@ PIDFILE=/var/run/${NAME}.pid
USER=prosody
export LOGNAME=$USER
test -x $DAEMON || exit 0
# Allow user to override default values listed above
[ -r /etc/default/$NAME ] && . /etc/default/$NAME
test -x $DAEMON || exit 0
set -e
function _start() {