From 54f56659b27c6675e8a9f3ba93ac922f651e86ba9758db6894246382b191dd3c Mon Sep 17 00:00:00 2001 From: Alexandre Vicenzi Date: Mon, 19 Apr 2021 08:24:42 +0000 Subject: [PATCH] Accepting request 886120 from home:dirkmueller:Factory - update etcd.service: avoid args from commandline and environment as it leads to start failure (bsc#1183703) OBS-URL: https://build.opensuse.org/request/show/886120 OBS-URL: https://build.opensuse.org/package/show/devel:kubic/etcd?expand=0&rev=13 --- etcd.changes | 6 ++++++ etcd.service | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/etcd.changes b/etcd.changes index 1e8f380..3e21ae5 100644 --- a/etcd.changes +++ b/etcd.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Fri Apr 16 20:34:06 UTC 2021 - Dirk Müller + +- update etcd.service: avoid args from commandline and environment + as it leads to start failure (bsc#1183703) + ------------------------------------------------------------------- Wed Mar 03 13:50:06 UTC 2021 - alexandre.vicenzi@suse.com diff --git a/etcd.service b/etcd.service index 4023af6..89e9866 100644 --- a/etcd.service +++ b/etcd.service @@ -10,7 +10,7 @@ WorkingDirectory=/var/lib/etcd/ EnvironmentFile=-/etc/sysconfig/etcd User=etcd # set GOMAXPROCS to number of processors -ExecStart=/bin/bash -c "GOMAXPROCS=$(nproc) /usr/sbin/etcd --name=\"${ETCD_NAME}\" --data-dir=\"${ETCD_DATA_DIR}\" --listen-client-urls=\"${ETCD_LISTEN_CLIENT_URLS}\"" +ExecStart=/bin/bash -c "GOMAXPROCS=$(nproc) /usr/sbin/etcd" Restart=on-failure LimitNOFILE=65536 Nice=-10