Allow disabling etcd3

Etcd3 was enabled recently as new service in devstack [1]. But there's
no way to disable etcd3. This is required on architectures where no etcd
binaries are available (e.g. s390x). The long term goal of course should
be to have those binaries available. The short term circumvention is to
allow disabling the service in local.conf:

   disable_service etcd3

[1] 546656fc05
Change-Id: I6184ed193482dad9643ccb2b97133d4957485408
Partial-Bug: #1693192
This commit is contained in:
Andreas Scheuring 2017-05-24 13:31:13 +02:00
parent 08de346d03
commit 94b9fae4e9
1 changed files with 3 additions and 1 deletions

View File

@ -1048,7 +1048,9 @@ start_dstat
# ----- # -----
# etcd is a distributed key value store that provides a reliable way to store data across a cluster of machines # etcd is a distributed key value store that provides a reliable way to store data across a cluster of machines
start_etcd3 if is_service_enabled etcd3; then
start_etcd3
fi
# Keystone # Keystone
# -------- # --------