Alexandra Settle 85107272be [contrib-guide] Updating url to doc-contrib-guide
Based off conversation at the PTG, we agreed it would be
beneficial to ensure the contrib-guide is clearly marked
as the doc contrib guide outside of the title.

This change includes a redirect.

Change-Id: I5abf915f0b94a482afa961e6b86364c26aae5d79
2017-09-22 14:57:47 +00:00

1.7 KiB

Profiling (conditional content)

Installation Tutorials and Guides has content that depends upon the operating systems.

Use the only directive to specify the content that is operating-system specific. Define one or several tags depending on the operating system the content belongs to. Make sure to close the only tag with endonly.

The valid tags for the only directive are:

  • ubuntu for Ubuntu
  • debian for Debian
  • rdo for Red Hat Enterprise Linux and CentOS
  • obs for openSUSE and SUSE Linux Enterprise

Note

The endonly tag allows the parser to identify the distro-specific blocks. For more information, refer to the rst2bash section. These changes are mandatory only for the installation guides.

Input

Install the NTP service
-----------------------

.. only:: ubuntu or debian

   .. code-block:: console

      # apt-get install chrony

   .. end

.. endonly

.. only:: rdo

   .. code-block:: console

      # yum install chrony

   .. end

.. endonly

.. only:: obs

   On openSUSE:

   .. code-block:: console

      # zypper addrepo http://download.opensuse.org/repositories/network:time/openSUSE_13.2/network:time.repo
      ...

   .. end

   On SLES:

   .. code-block:: console

      # zypper addrepo http://download.opensuse.org/repositories/network:time/SLE_12/network:time.repo
      ...

   .. end

.. endonly

For more details refer to Including content based on tags.