From cb1d69eae6b0558145bce352698e013a6a9452da Mon Sep 17 00:00:00 2001 From: Jairo Llopis Date: Fri, 7 Apr 2017 22:11:50 +0200 Subject: [PATCH] Fix enable/disable flags of repos in Fedora (#2676) --- engine/installation/linux/fedora.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engine/installation/linux/fedora.md b/engine/installation/linux/fedora.md index 77baad9548..5fed6c160a 100644 --- a/engine/installation/linux/fedora.md +++ b/engine/installation/linux/fedora.md @@ -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/).