From 49457f47ed2c8db8b508bbac309a666aab573121 Mon Sep 17 00:00:00 2001 From: Jens Harbott Date: Mon, 7 Oct 2019 07:27:07 +0000 Subject: [PATCH] Fix etcd setup on Ubuntu 18.04 The etcd service is enabled by default on Ubuntu 18.04, so it is already running after installing the package. We need to restart the service instead of only starting it in order to pick up our new configuration. Change-Id: Ie1d25eb6afe606d75865542b3fdea5d48db4c46a --- doc/install-guide/source/environment-etcd-ubuntu.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/install-guide/source/environment-etcd-ubuntu.rst b/doc/install-guide/source/environment-etcd-ubuntu.rst index 48d67544e4..af24f3dd6c 100644 --- a/doc/install-guide/source/environment-etcd-ubuntu.rst +++ b/doc/install-guide/source/environment-etcd-ubuntu.rst @@ -44,9 +44,9 @@ Install and configure components Finalize installation ~~~~~~~~~~~~~~~~~~~~~ -#. Enable and start the etcd service: +#. Enable and restart the etcd service: .. code-block:: console # systemctl enable etcd - # systemctl start etcd + # systemctl restart etcd