And I cleaned the init script a bit for which I warned you had to do.
#!/bin/bash
### BEGIN INIT INFO
# Provides: emby-server
# Required-Start: $remote_fs $local_fs $network
# Required-Stop: $remote_fs $local_fs $network
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: starts instance of Emby
# Description: starts instance of Emby
### END INIT INFO
# chkconfig: 2345 20 80
#The above indicates that the script should be started in levels 2, 3,
4, and 5, #that its start priority should be 20, and that its stop
priority should be 80.
# Load the VERBOSE setting and other rcS variables
. /lib/init/vars.sh
# Define LSB log_* functions.
# Depend on lsb-base (>= 3.0-6) to ensure that this file is present.
. /lib/lsb/init-functions
# Source Emby server default configuration
. $DEFAULT_FILE
# Source Emby server user configuration overrides
if [[ -f $CONF_FILE ]]; then
. $CONF_FILE
else
echo "${CONF_FILE} not found using default settings.";
fi