Fix enable/disable flags of repos in Fedora (#2676)

This commit is contained in:
Jairo Llopis 2017-04-07 22:11:50 +02:00 committed by John Mulhausen
parent fb4ff10d9d
commit cb1d69eae6
1 changed files with 2 additions and 2 deletions

View File

@ -90,7 +90,7 @@ the repository.
it alongside the stable repository.
```bash
$ sudo dnf config-manager --enable docker-ce-edge
$ sudo dnf config-manager --set-enabled docker-ce-edge
```
You can disable the **edge** repository by running the `dnf config-manager`
@ -98,7 +98,7 @@ the repository.
`--enable` flag. The following command disables the **edge** repository.
```bash
$ sudo dnf config-manager --disable docker-ce-edge
$ sudo dnf config-manager --set-disabled docker-ce-edge
```
[Learn about **stable** and **edge** channels](/engine/installation/).