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
This commit is contained in:
Jens Harbott 2019-10-07 07:27:07 +00:00
parent 356a228424
commit 49457f47ed
1 changed files with 2 additions and 2 deletions

View File

@ -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