Updating debian installation documentation

This commit is contained in:
DanB
2024-03-12 15:30:18 +01:00
parent bf939a47ac
commit fe39eec4d9

View File

@@ -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::