search for: libexec_bin

Displaying 5 results from an estimated 5 matches for "libexec_bin".

2015 Dec 16
2
Bug#805508: [PATCH] tools: allow configure time choice of libexec subdirectory.
...- a/config/Paths.mk.in +++ b/config/Paths.mk.in @@ -29,10 +29,10 @@ includedir := @includedir@ localstatedir := @localstatedir@ sysconfdir := @sysconfdir@ -LIBEXEC := $(libexecdir)/$(PACKAGE_TARNAME) +LIBEXEC := @LIBEXEC@ LIBEXEC_BIN := @LIBEXEC_BIN@ -LIBEXEC_LIB := $(LIBEXEC)/lib -LIBEXEC_INC := $(LIBEXEC)/include +LIBEXEC_LIB := @LIBEXEC_LIB@ +LIBEXEC_INC := @LIBEXEC_INC@ SHAREDIR := @SHAREDIR@ MAN1DIR := $(mandir)/man1 diff...
2016 Apr 07
2
Xen4CentOS 6 64bit - domUs don't shutdown on dom0 after "yum upgrade" to 4.6.1
...stop/start does the right thing. - chkconfig --list shows "xendomains 0:off 1:off 2:on 3:on 4:on 5:on 6:off" which looks nice. - The rc link is in place: /etc/rc.d/rc0.d/K00xendomains -> ../init.d/xendomains - Edited /etc/init.d/xendomains such that the lines: start) $LIBEXEC_BIN/xendomains start ;; stop) $LIBEXEC_BIN/xendomains stop ;; become (added "2>&1 | tee FILE" to the underlying start/stop command) start) $LIBEXEC_BIN/xendomains start 2>&1 | /usr/bin/tee -a /tmp/xd-start.log ;; stop)...
2016 Apr 11
0
Xen4CentOS 6 64bit - domUs don't shutdown on dom0 after "yum upgrade" to 4.6.1
...- chkconfig --list shows "xendomains 0:off 1:off 2:on 3:on 4:on 5:on > 6:off" which looks nice. > - The rc link is in place: /etc/rc.d/rc0.d/K00xendomains -> > ../init.d/xendomains > - Edited /etc/init.d/xendomains such that the lines: > > start) > $LIBEXEC_BIN/xendomains start > ;; > stop) > $LIBEXEC_BIN/xendomains stop > ;; > > become (added "2>&1 | tee FILE" to the underlying start/stop command) > > start) > $LIBEXEC_BIN/xendomains start 2>&1 | /usr/bin/tee -a &g...
2015 Dec 16
0
Bug#805508: [PATCH] tools: allow configure time choice of libexec subdirectory.
On Wed, 2015-12-16 at 15:06 +0000, Ian Campbell wrote: > -XENFIRMWAREDIR=`eval echo $libexecdir/$PACKAGE_TARNAME/boot` > +dnl These variables will be substituted in various .in files > +LIBEXEC_BIN=${LIBEXEC}/bin > +AC_SUBST(LIBEXEC_BIN) > +LIBEXEC_LIB=${LIBEXEC}/lib > +AC_SUBST(LIBEXEC_LIB) > +LIBEXEC_INC=${LIBEXEC}/include > +AC_SUBST(LIBEXEC_INC) > +XENFIRMWAREDIR=${LIBEXEC}/boot` I somehow slipped a stray ` in there and didn't notice, sorry. Ian.
2019 Feb 12
2
[PATCH 08/13] xen init script: rewrite xenstored start logic
Hans van Kranenburg writes ("Re: [PATCH 08/13] xen init script: rewrite xenstored start logic"): > So the question we should answer first is: What do we allow the user to > set as value? /bin/bash? And how should the init script deal with that? If they specify an absolute path, it should be used. Eg, /home/alice/Xen/xen/tools/xenstore/xenstore If the user specifies /bin/bash