From 33f25bcb79814243047e681fe8a06dcaf50097c8 Mon Sep 17 00:00:00 2001 From: dbs Date: Thu, 11 Nov 2010 14:47:12 +0000 Subject: [PATCH] If an alternate config file is pointed to in osrf_ctl.sh, respect it In a previous edit, I accidentally removed the config file option from the start_python command, which would break if anything other than the configured default config file was specified as an option to osrf_ctl.sh. This makes opensrf.py once again respect the authority of osrf_ctl.sh. git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@2076 9efc2488-bf62-4759-914b-345cdb29e865 --- bin/osrf_ctl.sh.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/osrf_ctl.sh.in b/bin/osrf_ctl.sh.in index d6c5483..8e9aaf6 100755 --- a/bin/osrf_ctl.sh.in +++ b/bin/osrf_ctl.sh.in @@ -165,7 +165,7 @@ start_python() { OPT_LOCAL="" [ "$OSRF_HOSTNAME" = "localhost" ] && OPT_LOCAL="-l" for service in `opensrf.py -a list_all $OPT_LOCAL`; do - opensrf.py -p $OPT_PID_DIR -d -a start -s $service $OPT_LOCAL + opensrf.py -p $OPT_PID_DIR -f $OPT_CONFIG -d -a start -s $service $OPT_LOCAL done return 0; } -- 2.43.2