Skip to content

Commit e1a71ff

Browse files
Merge pull request #511 from cgwalters/yum-on-fedora
dev-dependencies: Just use `yum` on Fedora too
2 parents 0f628c5 + e34a20d commit e1a71ff

File tree

2 files changed

+3
-18
lines changed

2 files changed

+3
-18
lines changed

docs/dev/dependencies.md

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,7 @@
44

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

7-
### Fedora
8-
9-
```sh
10-
sudo dnf install golang-bin gcc-c++
11-
```
12-
13-
If you need support for [libvirt destroy](libvirt-howto.md#cleanup), you should also install `libvirt-devel`.
14-
15-
### CentOS, RHEL
7+
### Fedora, CentOS, RHEL
168

179
```sh
1810
sudo yum install golang-bin gcc-c++

docs/dev/libvirt-howto.md

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,7 @@ It's expected that you will create and destroy clusters often in the course of d
88
Before you begin, install the [build dependencies](dependencies.md).
99

1010
### Install and Enable Libvirt
11-
On Fedora:
12-
13-
```sh
14-
sudo dnf install libvirt-daemon
15-
```
16-
17-
or on CentOS / RHEL:
11+
On Fedora, CentOS/RHEL:
1812

1913
```sh
2014
sudo yum install libvirt-daemon
@@ -23,8 +17,7 @@ sudo yum install libvirt-daemon
2317
Then start libvirtd:
2418

2519
```sh
26-
sudo systemctl start libvirtd
27-
sudo systemctl enable libvirtd
20+
sudo systemctl enable --now libvirtd
2821
```
2922

3023
### Pick names

0 commit comments

Comments
 (0)