diff options
author | mail_redacted_for_web | 2015-11-25 20:12:00 +0100 |
---|---|---|
committer | mail_redacted_for_web | 2015-11-25 20:12:00 +0100 |
commit | bb672929c90b92cc5733e43b92bf80360f58f158 (patch) | |
tree | b8d9b1f059e468277e67f0a3c673a1315cc28ee0 | |
parent | 0a3cf9fb4c78e848b2d5eb989651e74b59a16201 (diff) | |
download | infinoted-init-bb672929c90b92cc5733e43b92bf80360f58f158.tar.bz2 |
SYSVDEFAULTS
-rw-r--r-- | README.md | 1 | ||||
-rwxr-xr-x | init.d/infinoted | 3 |
2 files changed, 3 insertions, 1 deletions
@@ -17,3 +17,4 @@ Installation Just type "make help". The alternative: Copy init.d/infinoted to your SysVinit core script directory, default/infinoted to wherever your distro stores default variable scripts. +Don't forget to change the SYSVDEFAULTS variable in the init script (yep, because without SYSVDEFAULTS the script won't know whence to load the variables (: ) diff --git a/init.d/infinoted b/init.d/infinoted index d416d34..5c02c8e 100755 --- a/init.d/infinoted +++ b/init.d/infinoted @@ -35,6 +35,7 @@ PATH=/sbin:/usr/sbin:/bin:/usr/bin DESC="Infinoted, a server for collaborative editing" NAME=infinoted DAEMON=/usr/bin/$NAME +SYSVDEFAULTS=/etc/default # hp -- We are now presenting some defaults here, will be overwritten if present in /etc/default/$NAME INFINOTE_ROOT="/usr/local/share/infinoted" INFINOTE_CERT="/etc/infinoted/cert.pem" @@ -56,7 +57,7 @@ SCRIPTUSER="infinote:infinote" [ -x "$DAEMON" ] || exit 0 # Read configuration variable file if it is present -[ -r /etc/default/$NAME ] && . /etc/default/$NAME +[ -r $SYSVDEFAULTS/$NAME ] && . $SYSVDEFAULTS/$NAME DAEMON_ARGS="-d -c $INFINOTE_CERT -k $INFINOTE_KEY -p $INFINOTE_PORT -r $INFINOTE_ROOT" # Load the VERBOSE setting and other rcS variables |