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
10 changes: 1 addition & 9 deletions docs/dev/dependencies.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,7 @@

The following dependencies must be installed on your system before you can build the installer.

### Fedora

```sh
sudo dnf install golang-bin gcc-c++
```

If you need support for [libvirt destroy](libvirt-howto.md#cleanup), you should also install `libvirt-devel`.

### CentOS, RHEL
### Fedora, CentOS, RHEL

```sh
sudo yum install golang-bin gcc-c++
Expand Down
11 changes: 2 additions & 9 deletions docs/dev/libvirt-howto.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,7 @@ It's expected that you will create and destroy clusters often in the course of d
Before you begin, install the [build dependencies](dependencies.md).

### Install and Enable Libvirt
On Fedora:

```sh
sudo dnf install libvirt-daemon
```

or on CentOS / RHEL:
On Fedora, CentOS/RHEL:

```sh
sudo yum install libvirt-daemon
Expand All @@ -23,8 +17,7 @@ sudo yum install libvirt-daemon
Then start libvirtd:

```sh
sudo systemctl start libvirtd
sudo systemctl enable libvirtd
sudo systemctl enable --now libvirtd
```

### Pick names
Expand Down