diff --git a/docs/installation.rst b/docs/installation.rst index e16215dd3..a6feaec83 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -35,8 +35,11 @@ You can add the CGRateS repository to your system's sources list as follows: wget https://apt.cgrates.org/apt.cgrates.org.gpg.key -O apt.cgrates.org.asc sudo mv apt.cgrates.org.asc /etc/apt/trusted.gpg.d/ - # Add the repository to the apt sources list - echo "deb http://apt.cgrates.org/debian/ master main" | sudo tee /etc/apt/sources.list.d/cgrates.list + # Add the repository to the apt sources list for Debian versions starting with *Bookworm/12.0* + echo "deb http://apt.cgrates.org/debian/ master-bookworm main" | sudo tee /etc/apt/sources.list.d/cgrates.list + + # Add the repository to the apt sources list for Debian versions before *Bookworm/12.0* + echo "deb http://apt.cgrates.org/debian/ master-bullseye main" | sudo tee /etc/apt/sources.list.d/cgrates.list # Update the system repository and install CGRateS sudo apt-get update -y @@ -46,7 +49,7 @@ Alternatively, you can manually install a specific .deb package as follows: .. code-block:: bash - wget http://pkg.cgrates.org/deb/master/cgrates_current_amd64.deb + wget http://pkg.cgrates.org/deb/master/bookworm/cgrates_current_amd64.deb sudo dpkg -i ./cgrates_current_amd64.deb .. note::