From: Wei Liu Date: Tue, 18 Apr 2017 14:48:59 +0000 (+0100) Subject: hotplug/FreeBSD: configure xenstored X-Git-Tag: 4.9.0-rc3~24 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=f9e2600ea107bf408a2778f456bd1beee29ce3c1;p=xen.git hotplug/FreeBSD: configure xenstored Signed-off-by: Wei Liu Acked-by: Ian Jackson Acked-by: Roger Pau Monné Release-acked-by: Julien Grall --- diff --git a/tools/hotplug/FreeBSD/rc.d/xencommons.in b/tools/hotplug/FreeBSD/rc.d/xencommons.in index 2fcd84ab6d..ccd5a9b055 100644 --- a/tools/hotplug/FreeBSD/rc.d/xencommons.in +++ b/tools/hotplug/FreeBSD/rc.d/xencommons.in @@ -3,6 +3,8 @@ # PROVIDE: xencommons # REQUIRE: DAEMON +XENSTORED=@XENSTORED@ + . /etc/rc.subr . @XEN_SCRIPT_DIR@/hotplugpath.sh @@ -37,7 +39,7 @@ xen_startcmd() local time=0 local timeout=30 - xenstored_pid=$(check_pidfile ${XENSTORED_PIDFILE} ${sbindir}/xenstored) + xenstored_pid=$(check_pidfile ${XENSTORED_PIDFILE} ${XENSTORED}) if test -z "$xenstored_pid"; then printf "Cleaning xenstore database.\n" if [ -z "${XENSTORED_ROOTDIR}" ]; then @@ -49,7 +51,7 @@ xen_startcmd() if [ -n "${XENSTORED_TRACE}" ]; then XENSTORED_ARGS="${XENSTORED_ARGS} -T @XEN_LOG_DIR@/xenstored-trace.log" fi - ${sbindir}/xenstored ${XENSTORED_ARGS} + ${XENSTORED} ${XENSTORED_ARGS} while [ $time -lt $timeout ] && ! `${bindir}/xenstore-read -s / >/dev/null 2>&1` ; do printf "." time=$(($time+1)) @@ -87,7 +89,7 @@ xen_stop() xen_status() { - xenstored_pid=$(check_pidfile ${XENSTORED_PIDFILE} ${sbindir}/xenstored) + xenstored_pid=$(check_pidfile ${XENSTORED_PIDFILE} ${XENSTORED}) if test -n ${xenstored_pid}; then pids="$pids $xenstored_pid" fi