Update init/fedora
The config file should be read after the defaults are set, or the options set in the config file are never used.
This commit is contained in:
10
init/fedora
10
init/fedora
@@ -11,11 +11,6 @@
|
||||
# Source function library.
|
||||
. /etc/init.d/functions
|
||||
|
||||
# Source couchpotato configuration
|
||||
if [ -f /etc/sysconfig/couchpotato ]; then
|
||||
. /etc/sysconfig/couchpotato
|
||||
fi
|
||||
|
||||
prog=couchpotato
|
||||
lockfile=/var/lock/subsys/$prog
|
||||
|
||||
@@ -27,6 +22,11 @@ datadir=${CP_DATA-~/.couchpotato}
|
||||
pidfile=${CP_PIDFILE-/var/run/couchpotato/couchpotato.pid}
|
||||
##
|
||||
|
||||
# Source couchpotato configuration
|
||||
if [ -f /etc/sysconfig/couchpotato ]; then
|
||||
. /etc/sysconfig/couchpotato
|
||||
fi
|
||||
|
||||
pidpath=`dirname ${pidfile}`
|
||||
options=" --daemon --pid_file=${pidfile} --data_dir=${datadir}"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user