All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-cloud-services] [PATCH 1/2] consul: Upgrade to 1.6.0
@ 2019-09-09  9:42 zhe.he
  2019-09-09  9:42 ` [meta-cloud-services] [PATCH 2/2] consul: Not automatically start system service on boot zhe.he
  2019-09-09 17:36 ` [meta-cloud-services] [PATCH 1/2] consul: Upgrade to 1.6.0 Bruce Ashfield
  0 siblings, 2 replies; 4+ messages in thread
From: zhe.he @ 2019-09-09  9:42 UTC (permalink / raw)
  To: meta-virtualization, bruce.ashfield

From: He Zhe <zhe.he@windriver.com>

1.6.0 is the latest release.

Signed-off-by: He Zhe <zhe.he@windriver.com>
---
 recipes-connectivity/consul/consul_git.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes-connectivity/consul/consul_git.bb b/recipes-connectivity/consul/consul_git.bb
index ab78cbd..f3e64e9 100644
--- a/recipes-connectivity/consul/consul_git.bb
+++ b/recipes-connectivity/consul/consul_git.bb
@@ -4,7 +4,7 @@ LICENSE = "MPL-2.0 & BSD & Apache-2.0 & BSD-2-Clause & MIT"
 LIC_FILES_CHKSUM = "file://src/github.com/hashicorp/consul/LICENSE;md5=b278a92d2c1509760384428817710378"
 
 GO_IMPORT = "github.com/hashicorp/consul"
-SRCREV = "567e41ff6b096a478333c804d5c18264050bc3f8"
+SRCREV = "944cc71026c007e7de9467ec3f38f0ad14464fcc"
 SRC_URI = "git://${GO_IMPORT}.git \
            file://consul.service \
           "
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [meta-cloud-services] [PATCH 2/2] consul: Not automatically start system service on boot
  2019-09-09  9:42 [meta-cloud-services] [PATCH 1/2] consul: Upgrade to 1.6.0 zhe.he
@ 2019-09-09  9:42 ` zhe.he
  2019-09-09 17:36   ` Bruce Ashfield
  2019-09-09 17:36 ` [meta-cloud-services] [PATCH 1/2] consul: Upgrade to 1.6.0 Bruce Ashfield
  1 sibling, 1 reply; 4+ messages in thread
From: zhe.he @ 2019-09-09  9:42 UTC (permalink / raw)
  To: meta-virtualization, bruce.ashfield

From: He Zhe <zhe.he@windriver.com>

The systemd service needs to be tuned according to various use cases and cannot
be able to always start successfully for example when there is no network
interface named br0 by default.

Thus the default configuration is mainly used as an example. Let's not
automatically start it on boot.

Signed-off-by: He Zhe <zhe.he@windriver.com>
---
 recipes-connectivity/consul/consul_git.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes-connectivity/consul/consul_git.bb b/recipes-connectivity/consul/consul_git.bb
index f3e64e9..566fbc9 100644
--- a/recipes-connectivity/consul/consul_git.bb
+++ b/recipes-connectivity/consul/consul_git.bb
@@ -25,7 +25,7 @@ inherit systemd go
 COMPATIBLE_HOST_mipsarch = "null"
 
 SYSTEMD_SERVICE_${PN} = "consul.service"
-SYSTEMD_AUTO_ENABLE_${PN} = "enable"
+SYSTEMD_AUTO_ENABLE_${PN} = "disable"
 
 do_install_append() {
     install -d ${D}/${systemd_unitdir}/system
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [meta-cloud-services] [PATCH 1/2] consul: Upgrade to 1.6.0
  2019-09-09  9:42 [meta-cloud-services] [PATCH 1/2] consul: Upgrade to 1.6.0 zhe.he
  2019-09-09  9:42 ` [meta-cloud-services] [PATCH 2/2] consul: Not automatically start system service on boot zhe.he
@ 2019-09-09 17:36 ` Bruce Ashfield
  1 sibling, 0 replies; 4+ messages in thread
From: Bruce Ashfield @ 2019-09-09 17:36 UTC (permalink / raw)
  To: He Zhe; +Cc: meta-virtualization

merged

Bruce

On Mon, Sep 9, 2019 at 5:42 AM <zhe.he@windriver.com> wrote:
>
> From: He Zhe <zhe.he@windriver.com>
>
> 1.6.0 is the latest release.
>
> Signed-off-by: He Zhe <zhe.he@windriver.com>
> ---
>  recipes-connectivity/consul/consul_git.bb | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/recipes-connectivity/consul/consul_git.bb b/recipes-connectivity/consul/consul_git.bb
> index ab78cbd..f3e64e9 100644
> --- a/recipes-connectivity/consul/consul_git.bb
> +++ b/recipes-connectivity/consul/consul_git.bb
> @@ -4,7 +4,7 @@ LICENSE = "MPL-2.0 & BSD & Apache-2.0 & BSD-2-Clause & MIT"
>  LIC_FILES_CHKSUM = "file://src/github.com/hashicorp/consul/LICENSE;md5=b278a92d2c1509760384428817710378"
>
>  GO_IMPORT = "github.com/hashicorp/consul"
> -SRCREV = "567e41ff6b096a478333c804d5c18264050bc3f8"
> +SRCREV = "944cc71026c007e7de9467ec3f38f0ad14464fcc"
>  SRC_URI = "git://${GO_IMPORT}.git \
>             file://consul.service \
>            "
> --
> 2.7.4
>


-- 
- Thou shalt not follow the NULL pointer, for chaos and madness await
thee at its end
- "Use the force Harry" - Gandalf, Star Trek II


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [meta-cloud-services] [PATCH 2/2] consul: Not automatically start system service on boot
  2019-09-09  9:42 ` [meta-cloud-services] [PATCH 2/2] consul: Not automatically start system service on boot zhe.he
@ 2019-09-09 17:36   ` Bruce Ashfield
  0 siblings, 0 replies; 4+ messages in thread
From: Bruce Ashfield @ 2019-09-09 17:36 UTC (permalink / raw)
  To: He Zhe; +Cc: meta-virtualization

merged

Bruce

On Mon, Sep 9, 2019 at 5:42 AM <zhe.he@windriver.com> wrote:
>
> From: He Zhe <zhe.he@windriver.com>
>
> The systemd service needs to be tuned according to various use cases and cannot
> be able to always start successfully for example when there is no network
> interface named br0 by default.
>
> Thus the default configuration is mainly used as an example. Let's not
> automatically start it on boot.
>
> Signed-off-by: He Zhe <zhe.he@windriver.com>
> ---
>  recipes-connectivity/consul/consul_git.bb | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/recipes-connectivity/consul/consul_git.bb b/recipes-connectivity/consul/consul_git.bb
> index f3e64e9..566fbc9 100644
> --- a/recipes-connectivity/consul/consul_git.bb
> +++ b/recipes-connectivity/consul/consul_git.bb
> @@ -25,7 +25,7 @@ inherit systemd go
>  COMPATIBLE_HOST_mipsarch = "null"
>
>  SYSTEMD_SERVICE_${PN} = "consul.service"
> -SYSTEMD_AUTO_ENABLE_${PN} = "enable"
> +SYSTEMD_AUTO_ENABLE_${PN} = "disable"
>
>  do_install_append() {
>      install -d ${D}/${systemd_unitdir}/system
> --
> 2.7.4
>


-- 
- Thou shalt not follow the NULL pointer, for chaos and madness await
thee at its end
- "Use the force Harry" - Gandalf, Star Trek II


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-09-09 17:37 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-09  9:42 [meta-cloud-services] [PATCH 1/2] consul: Upgrade to 1.6.0 zhe.he
2019-09-09  9:42 ` [meta-cloud-services] [PATCH 2/2] consul: Not automatically start system service on boot zhe.he
2019-09-09 17:36   ` Bruce Ashfield
2019-09-09 17:36 ` [meta-cloud-services] [PATCH 1/2] consul: Upgrade to 1.6.0 Bruce Ashfield

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.