mirror of
https://gitlab.isc.org/isc-projects/kea
synced 2025-08-22 18:08:16 +00:00
[#3379] added instructions about new kea repositories
This commit is contained in:
parent
228e848be3
commit
d2ca687d78
@ -18,6 +18,17 @@ go to https://cloudsmith.io/~isc/repos, choose the desired Kea version,
|
||||
and then click the "Set Me Up" button. For detailed
|
||||
instructions, please refer to this `Knowledgebase article <https://kb.isc.org/docs/isc-kea-packages>`_.
|
||||
|
||||
ISC maintains two types of repositories: stable and development.
|
||||
The stable repositories contain a single stable release (e.g.,
|
||||
kea-2-4 or kea-2-6) along with all its maintenance updates.
|
||||
Separate repositories were introduced to minimize the risk of
|
||||
unintentionally upgrading from one stable release to another.
|
||||
|
||||
The development repository, kea-dev, includes current and
|
||||
future development releases, which ISC does not recommend
|
||||
for production use. Packages in the kea-dev repository are
|
||||
subject to cleanup, and older versions may be removed.
|
||||
|
||||
Installation From Cloudsmith Packages
|
||||
-------------------------------------
|
||||
ISC provides Kea packages for Alpine, Debian, Fedora, RHEL, and Ubuntu.
|
||||
|
@ -58,7 +58,12 @@ easier to install Kea using native packages.
|
||||
|
||||
1. Go to `Kea on cloudsmith.io <https://cloudsmith.io/~isc/repos/>`__.
|
||||
|
||||
2. Choose the Cloudsmith repository e.g. |cloudsmith_repo| for Kea |version|.
|
||||
2. Choose the Cloudsmith repository e.g. |cloudsmith_repo| for Kea |version|. Or kea-2-4 for Kea 2.4.
|
||||
|
||||
.. note::
|
||||
All stable releases are stored in separate repositories, such as kea-2-4, kea-2-6, and so on.
|
||||
All development releases, which are not recommended for production use,
|
||||
are located in the kea-dev repository.
|
||||
|
||||
3. Click on the arrow beside the "Set Me Up" button and select the desired OS flavor:
|
||||
Alpine, Debian, or RedHat.
|
||||
|
@ -47,6 +47,10 @@ with open(config_ac_path) as f:
|
||||
version = release
|
||||
dashed_version_series='-'.join(version.split('.')[0:2])
|
||||
|
||||
# now let's replace versions with odd minor number with dev
|
||||
if int(dashed_version_series[-1]) % 2 != 0:
|
||||
dashed_version_series = 'dev'
|
||||
|
||||
# -- General configuration ---------------------------------------------------
|
||||
|
||||
# If your documentation needs a minimal Sphinx version, state it here.
|
||||
|
Loading…
x
Reference in New Issue
Block a user