From: Wei Liu <wei.liu2@citrix.com>
To: Sjoer van der Ploeg <sfjuocekr@gmail.com>
Cc: xen-devel@lists.xenproject.org, Wei Liu <wei.liu2@citrix.com>
Subject: Re: [PATCH] Fixed --enable-systemd on latest Debian stretch. Added xencommons as a systemd.service.
Date: Fri, 1 Apr 2016 16:17:06 +0100 [thread overview]
Message-ID: <20160401151705.GJ27636@citrix.com> (raw)
In-Reply-To: <1459456525-13897-1-git-send-email-sfjuocekr@gmail.com>
Hello
On Thu, Mar 31, 2016 at 10:35:25PM +0200, Sjoer van der Ploeg wrote:
> Signed-off by: Sjoer van der Ploeg <sfjuocekr@gmail.com>
> ---
> m4/systemd.m4 | 15 +++++++++------
> tools/configure.ac | 1 +
> tools/hotplug/Linux/systemd/xencommons.service.in | 13 +++++++++++++
> 3 files changed, 23 insertions(+), 6 deletions(-)
> create mode 100644 tools/hotplug/Linux/systemd/xencommons.service.in
>
> diff --git a/m4/systemd.m4 b/m4/systemd.m4
> index e4b1aa5..8b86c20 100644
> --- a/m4/systemd.m4
> +++ b/m4/systemd.m4
> @@ -41,7 +41,9 @@ AC_DEFUN([AX_ALLOW_SYSTEMD_OPTS], [
> ])
>
> AC_DEFUN([AX_CHECK_SYSTEMD_LIBS], [
> - PKG_CHECK_MODULES([SYSTEMD], [libsystemd-daemon])
> + PKG_CHECK_MODULES([SYSTEMD], [libsystemd-daemon],, [
> + PKG_CHECK_MODULES([SYSTEMD], [libsystemd])
> + ])
> dnl pkg-config older than 0.24 does not set these for
> dnl PKG_CHECK_MODULES() worth also noting is that as of version 208
> dnl of systemd pkg-config --cflags currently yields no extra flags yet.
> @@ -83,19 +85,20 @@ AC_DEFUN([AX_CHECK_SYSTEMD], [
> AS_IF([test "x$enable_systemd" != "xno"], [
> AS_IF([test "x$systemd" = "xy" ], [
> AC_DEFINE([HAVE_SYSTEMD], [1], [Systemd available and enabled])
> - systemd=y
> + systemd="y"
I don't think quotation is needed.
> AX_CHECK_SYSTEMD_LIBS()
> ],[
> AS_IF([test "x$enable_systemd" = "xyes"],
> [AC_MSG_ERROR([Unable to find systemd development library])],
> - [systemd=n])
> + [systemd="n"])
> ])
> - ],[systemd=n])
> + ],[systemd="n"])
> ])
>
> AC_DEFUN([AX_CHECK_SYSTEMD_ENABLE_AVAILABLE], [
> - PKG_CHECK_MODULES([SYSTEMD], [libsystemd-daemon], [systemd="y"],
> - [systemd="n"])
> + PKG_CHECK_MODULES([SYSTEMD], [libsystemd-daemon], [systemd="y"], [
> + PKG_CHECK_MODULES([SYSTEMD], [libsystemd], [systemd="y"], [systemd="n"])
And this is because stretch now has libsystemd instead of
libsystemd-daemon?
I'm just trying to understand the issue here. Your commit message is too
terse.
> + ])
> ])
>
> dnl Enables systemd by default and requires a --disable-systemd option flag
> diff --git a/tools/configure.ac b/tools/configure.ac
> index 5b5dda4..be124f6 100644
> --- a/tools/configure.ac
> +++ b/tools/configure.ac
> @@ -432,6 +432,7 @@ AS_IF([test "x$systemd" = "xy"], [
> hotplug/Linux/systemd/xen-init-dom0.service
> hotplug/Linux/systemd/xen-qemu-dom0-disk-backend.service
> hotplug/Linux/systemd/xen-watchdog.service
> + hotplug/Linux/systemd/xencommons.service
> hotplug/Linux/systemd/xenconsoled.service
> hotplug/Linux/systemd/xendomains.service
> hotplug/Linux/systemd/xenstored.service
> diff --git a/tools/hotplug/Linux/systemd/xencommons.service.in b/tools/hotplug/Linux/systemd/xencommons.service.in
> new file mode 100644
> index 0000000..c1fbf8b
> --- /dev/null
> +++ b/tools/hotplug/Linux/systemd/xencommons.service.in
> @@ -0,0 +1,13 @@
> +[Unit]
> +Description=Xencommons - handles loading requiered modules
> +ConditionPathExists=/proc/xen
> +
> +[Service]
> +Type=oneshot
> +RemainAfterExit=true
> +ExecStartPre=/bin/grep -q control_d /proc/xen/capabilities
> +ExecStart=@CONFIG_DIR@/init.d/xencommons start
> +ExecStop=@CONFIG_DIR@/init.d/xencommons stop
> +
Probably not this. We already have discrete service files for systemd.
How is that broken for you?
Wei.
> +[Install]
> +WantedBy=multi-user.target
> --
> 2.8.0.rc3
>
>
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xen.org
> http://lists.xen.org/xen-devel
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel
next prev parent reply other threads:[~2016-04-01 15:16 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-03-31 20:35 [PATCH] Fixed --enable-systemd on latest Debian stretch. Added xencommons as a systemd.service Sjoer van der Ploeg
2016-04-01 15:17 ` Wei Liu [this message]
[not found] ` <CAGj-wbFHgSe=NJ5L3U6Cno5U6k3XWfy16F3PNhwx6X5Q7GqT4Q@mail.gmail.com>
2016-04-01 15:57 ` Wei Liu
[not found] ` <CAGj-wbFYyMgfxpf8sWJnUukFe3fWp9BAKYChPmW3+NY7Tj=ggQ@mail.gmail.com>
2016-04-01 17:01 ` Wei Liu
2016-04-01 17:14 ` Sjoer van der Ploeg
2016-04-01 19:43 ` Olaf Hering
2016-04-02 0:45 ` Sjoer van der Ploeg
2016-04-02 10:59 ` Wei Liu
2016-04-02 11:12 ` Wei Liu
2016-04-02 11:24 ` Sjoer van der Ploeg
2016-04-04 10:30 ` Wei Liu
[not found] ` <CAGj-wbENk7vqdd-00kD2NASpEZcDb+uruAR_whgjySCJognJfA@mail.gmail.com>
2016-04-04 11:33 ` Wei Liu
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20160401151705.GJ27636@citrix.com \
--to=wei.liu2@citrix.com \
--cc=sfjuocekr@gmail.com \
--cc=xen-devel@lists.xenproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).