From 67abd259f56a5f991455a68dd9fe321985e195be Mon Sep 17 00:00:00 2001 From: Colleen Murphy Date: Tue, 4 Apr 2017 13:15:04 +0200 Subject: [PATCH] Fix install guide docs for SUSE First, the example package install command neglected to include any of the package names, so this patch adds the correct package names as well as omits the non-essential, personal-preference command flags so as to be consistent with the examples in the main OpenStack install guide. Second, like the barbican packages in RDO, the OBS barbican packages do not include an openstack-barbican-api systemd unit file and instead provide an Apache vhost sample file, so this patch modifies the service instructions to configure the service with Apache. Change-Id: I13bfeef4f06602984d2ffb727212ab6d39797401 (cherry picked from commit 7df3342e353c0b26c97c350be52373d2b0bc2ebc) --- install-guide/source/install-obs.rst | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/install-guide/source/install-obs.rst b/install-guide/source/install-obs.rst index 3921cdcd1..5395f1a99 100644 --- a/install-guide/source/install-obs.rst +++ b/install-guide/source/install-obs.rst @@ -16,7 +16,7 @@ Install and configure components .. code-block:: console - # zypper --quiet --non-interactive install + # zypper install openstack-barbican-api openstack-barbican-keystone-listener openstack-barbican-worker .. include:: common_configure.rst @@ -24,11 +24,15 @@ Install and configure components Finalize installation --------------------- -Start the Key Manager services and configure them to start when -the system boots: +#. Copy the sample Apache vhost file into place: .. code-block:: console - # systemctl enable openstack-barbican-api.service + # cp /etc/apache2/conf.d/barbican-api.conf.sample /etc/apache2/vhosts.d/barbican-api.conf - # systemctl start openstack-barbican-api.service +#. Start the Apache HTTP service and configure it to start when the system boots: + + .. code-block:: console + + # systemctl enable apache2.service + # systemctl start apache2.service