Use tacker server absolute path as exe file

Systemd unit file needs an absolute exe path.

Change-Id: I3f57dd069a0ddace360fac5d8724a95a0091319b
Closes-Bug: 1687823
This commit is contained in:
gong yong sheng 2017-05-03 08:14:13 +08:00
parent dd8d933739
commit bc5500f4d7

View File

@ -153,7 +153,7 @@ function start_tacker_api {
service_protocol="http"
fi
# Start the Tacker service
run_process tacker "python $TACKER_BIN_DIR/tacker-server $cfg_file_options"
run_process tacker "$TACKER_BIN_DIR/tacker-server $cfg_file_options"
echo "Waiting for Tacker to start..."
if is_ssl_enabled_service "tacker"; then
ssl_ca="--ca-certificate=${SSL_BUNDLE_FILE}"