Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 12 additions & 4 deletions src/22.4/source-build/openvasd/dependencies.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,30 +8,36 @@
.. code-block::
:caption: Required dependencies for openvasd

# Follow instructions of https://rustup.rs to install cargo and afterwards run
# Follow instructions of https://rustup.rs to install rustup and afterwards run

sudo apt install -y \
pkg-config \
libssl-dev

rustup update stable

.. tab:: Ubuntu
.. code-block::
:caption: Required dependencies for openvasd

sudo apt install -y \
cargo \
rustup \
pkg-config \
libssl-dev

rustup update stable

.. tab:: Fedora
.. code-block::
:caption: Required dependencies for openvasd

sudo dnf install -y \
cargo \
rustup \
pkg-config \
openssl-devel

rustup update stable

.. tab:: CentOS

.. attention::
Expand All @@ -40,9 +46,11 @@
.. code-block::
:caption: Required dependencies for openvasd

# Follow instructions of https://rustup.rs to install cargo and afterwards run
# Follow instructions of https://rustup.rs to install rustup and afterwards run

sudo dnf install -y \
pkg-config \
openssl-devel

rustup update stable
```
1 change: 1 addition & 0 deletions src/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Calendar Versioning](https://calver.org).
* Improve hints about following rustup.sh instructions on Debian and CentOS to
build openvasd
* Require Ubuntu 24.04 for source build to fix building gvm-libs
* Ensure cargo is up-to-date by running `rustup update stable` for openvasd

## 25.5.0 - 2025-05-30

Expand Down