From df6a6062e50bbe692f849312f3357ab1d8e92234 Mon Sep 17 00:00:00 2001 From: Petr Bokoc Date: Sep 16 2019 14:19:36 +0000 Subject: [PATCH 1/9] Branch for F31 and update version numbers --- diff --git a/antora.yml b/antora.yml index d70d031..60c00dd 100644 --- a/antora.yml +++ b/antora.yml @@ -1,5 +1,5 @@ --- name: fedora -version: rawhide +version: f31 # Navigation is in the main 'fedora' component: # https://pagure.io/fedora-docs/release-docs-home diff --git a/modules/release-notes/nav.adoc b/modules/release-notes/nav.adoc index ed7256e..a2a3bd9 100644 --- a/modules/release-notes/nav.adoc +++ b/modules/release-notes/nav.adoc @@ -34,5 +34,5 @@ include::{partialsdir}/entities.adoc[] *** xref:developers/Development_Rust.adoc[Rust] *** xref:developers/Development_Web.adoc[Web Development] //CHANGE THIS WITH A NEW RELEASE -** link:https://fedoraproject.org/wiki/Common_F30_bugs[Common Bugs] +** link:https://fedoraproject.org/wiki/Common_F31_bugs[Common Bugs] ** xref:Revision_History.adoc[Revision History] diff --git a/modules/release-notes/pages/_partials/entities.adoc b/modules/release-notes/pages/_partials/entities.adoc index 1f55525..aed340f 100644 --- a/modules/release-notes/pages/_partials/entities.adoc +++ b/modules/release-notes/pages/_partials/entities.adoc @@ -1,10 +1,10 @@ :BOOKID: release-notes :BZURL: https://pagure.io/fedora-docs/release-notes/issues -:COMMONBUGS_URL: https://fedoraproject.org/wiki/Common_F29_bugs +:COMMONBUGS_URL: https://fedoraproject.org/wiki/Common_F31_bugs :HOLDER: Fedora Project Contributors :KERNEL: 4.8 -:NEXTVER: 31 -:PREVVER: 29 +:NEXTVER: 32 +:PREVVER: 30 :PRODUCT: Fedora Documentation -:PRODVER: rawhide +:PRODVER: 31 :YEAR: 2018 diff --git a/site.yml b/site.yml index addab67..6efb1d5 100644 --- a/site.yml +++ b/site.yml @@ -6,7 +6,7 @@ content: - url: . branches: HEAD - url: https://pagure.io/fedora-docs/release-docs-home.git - branches: master + branches: f31 ui: bundle: url: https://asamalik.fedorapeople.org/ui-bundle.zip From a1297c6e3651aefb49b6af5312dd3d1b761bc8bf Mon Sep 17 00:00:00 2001 From: Petr Bokoc Date: Sep 16 2019 14:28:08 +0000 Subject: [PATCH 2/9] Revert "Update build and preview scripts" This reverts commit cb9a463a5deed898cb0feb45c883c72b2809d4af. --- diff --git a/build.sh b/build.sh index 1e4db2d..083da18 100755 --- a/build.sh +++ b/build.sh @@ -1,46 +1,35 @@ #!/bin/sh -image="docker.io/antora/antora" +image="antora/antora" cmd="--html-url-extension-style=indexify site.yml" if [ "$(uname)" == "Darwin" ]; then # Running on macOS. # Let's assume that the user has the Docker CE installed # which doesn't require a root password. - echo "" - echo "This build script is using Docker container runtime to run the build in an isolated environment." - echo "" docker run --rm -it -v $(pwd):/antora $image $cmd elif [ "$(expr substr $(uname -s) 1 5)" == "Linux" ]; then # Running on Linux. # Check whether podman is available, else faill back to docker # which requires root. - if [ -f /usr/bin/podman ]; then + runtime="podman" + else + runtime="docker" + fi + if groups | grep -wq "docker"; then + # Check if the current user is in the "docker" group. If true, no sudo is needed. echo "" - echo "This build script is using Podman to run the build in an isolated environment." - echo "" - podman run --rm -it -v $(pwd):/antora:z $image $cmd - - elif [ -f /usr/bin/docker ]; then - echo "" - echo "This build script is using Docker to run the build in an isolated environment." + echo "This build script is using $runtime to run the build in an isolated environment." echo "" - - if groups | grep -wq "docker"; then - docker run --rm -it -v $(pwd):/antora:z $image $cmd - else - echo "" - echo "This build script is using $runtime to run the build in an isolated environment. You might be asked for your password." - echo "You can avoid this by adding your user to the 'docker' group, but be aware of the security implications. See https://docs.docker.com/install/linux/linux-postinstall/." - echo "" - sudo docker run --rm -it -v $(pwd):/antora:z $image $cmd - fi + $runtime run --rm -it -v $(pwd):/antora:z $image $cmd else + # User isn't in the docker group; run the command with sudo. + echo "" + echo "This build script is using $runtime to run the build in an isolated environment. You might be asked for your password." + echo "You can avoid this by adding your user to the 'docker' group, but be aware of the security implications. See https://docs.docker.com/install/linux/linux-postinstall/." echo "" - echo "Error: Container runtime haven't been found on your system. Fix it by:" - echo "$ sudo dnf install podman" - exit 1 + sudo $runtime run --rm -it -v $(pwd):/antora:z $image $cmd fi fi diff --git a/preview.sh b/preview.sh index 1e4db2d..16d02d8 100755 --- a/preview.sh +++ b/preview.sh @@ -1,46 +1,36 @@ #!/bin/sh -image="docker.io/antora/antora" -cmd="--html-url-extension-style=indexify site.yml" - if [ "$(uname)" == "Darwin" ]; then # Running on macOS. # Let's assume that the user has the Docker CE installed # which doesn't require a root password. - echo "" - echo "This build script is using Docker container runtime to run the build in an isolated environment." - echo "" - docker run --rm -it -v $(pwd):/antora $image $cmd + echo "The preview will be available at http://localhost:8080/" + docker run --rm -v $(pwd):/antora:ro -v $(pwd)/nginx.conf:/etc/nginx/conf.d/default.conf:ro -p 8080:80 nginx elif [ "$(expr substr $(uname -s) 1 5)" == "Linux" ]; then # Running on Linux. # Check whether podman is available, else faill back to docker # which requires root. - if [ -f /usr/bin/podman ]; then + runtime="podman" + else + runtime="docker" + fi + if groups | grep -wq "docker"; then + # Check if the current user is in the "docker" group. If true, no sudo is needed. echo "" - echo "This build script is using Podman to run the build in an isolated environment." + echo "This build script is using $runtime to run the build in an isolated environment." + echo "The preview will be available at http://localhost:8080/" echo "" - podman run --rm -it -v $(pwd):/antora:z $image $cmd - - elif [ -f /usr/bin/docker ]; then + $runtime run --rm -v $(pwd):/antora:ro,z -v $(pwd)/nginx.conf:/etc/nginx/conf.d/default.conf:ro,z -p 8080:80 nginx + else + # User isn't in the docker group; run the command with sudo. echo "" - echo "This build script is using Docker to run the build in an isolated environment." + echo "This build script is using $runtime to run the build in an isolated environment. You might be asked for your password." + echo "You can avoid this by adding your user to the 'docker' group, but be aware of the security implications. See https://docs.docker.com/install/linux/linux-postinstall/." echo "" - - if groups | grep -wq "docker"; then - docker run --rm -it -v $(pwd):/antora:z $image $cmd - else - echo "" - echo "This build script is using $runtime to run the build in an isolated environment. You might be asked for your password." - echo "You can avoid this by adding your user to the 'docker' group, but be aware of the security implications. See https://docs.docker.com/install/linux/linux-postinstall/." - echo "" - sudo docker run --rm -it -v $(pwd):/antora:z $image $cmd - fi - else + echo "The preview will be available at http://localhost:8080/" echo "" - echo "Error: Container runtime haven't been found on your system. Fix it by:" - echo "$ sudo dnf install podman" - exit 1 + sudo $runtime run --rm -v $(pwd):/antora:ro,z -v $(pwd)/nginx.conf:/etc/nginx/conf.d/default.conf:ro,z -p 8080:80 nginx fi fi From 6d5c72adf69cd75bdca47a02db211590c875dd60 Mon Sep 17 00:00:00 2001 From: Petr Bokoc Date: Sep 16 2019 14:37:37 +0000 Subject: [PATCH 3/9] Fix the YEAR attribute --- diff --git a/modules/release-notes/pages/_partials/entities.adoc b/modules/release-notes/pages/_partials/entities.adoc index aed340f..8bf1ab6 100644 --- a/modules/release-notes/pages/_partials/entities.adoc +++ b/modules/release-notes/pages/_partials/entities.adoc @@ -7,4 +7,4 @@ :PREVVER: 30 :PRODUCT: Fedora Documentation :PRODVER: 31 -:YEAR: 2018 +:YEAR: 2019 From 5e988509d530c18674b5936cbc4af5cdc1831365 Mon Sep 17 00:00:00 2001 From: Petr Bokoc Date: Sep 17 2019 12:12:08 +0000 Subject: [PATCH 4/9] Update build and preview scripts --- diff --git a/build.sh b/build.sh index 083da18..1e4db2d 100755 --- a/build.sh +++ b/build.sh @@ -1,35 +1,46 @@ #!/bin/sh -image="antora/antora" +image="docker.io/antora/antora" cmd="--html-url-extension-style=indexify site.yml" if [ "$(uname)" == "Darwin" ]; then # Running on macOS. # Let's assume that the user has the Docker CE installed # which doesn't require a root password. + echo "" + echo "This build script is using Docker container runtime to run the build in an isolated environment." + echo "" docker run --rm -it -v $(pwd):/antora $image $cmd elif [ "$(expr substr $(uname -s) 1 5)" == "Linux" ]; then # Running on Linux. # Check whether podman is available, else faill back to docker # which requires root. + if [ -f /usr/bin/podman ]; then - runtime="podman" - else - runtime="docker" - fi - if groups | grep -wq "docker"; then - # Check if the current user is in the "docker" group. If true, no sudo is needed. echo "" - echo "This build script is using $runtime to run the build in an isolated environment." + echo "This build script is using Podman to run the build in an isolated environment." echo "" - $runtime run --rm -it -v $(pwd):/antora:z $image $cmd - else - # User isn't in the docker group; run the command with sudo. + podman run --rm -it -v $(pwd):/antora:z $image $cmd + + elif [ -f /usr/bin/docker ]; then + echo "" + echo "This build script is using Docker to run the build in an isolated environment." echo "" - echo "This build script is using $runtime to run the build in an isolated environment. You might be asked for your password." - echo "You can avoid this by adding your user to the 'docker' group, but be aware of the security implications. See https://docs.docker.com/install/linux/linux-postinstall/." + + if groups | grep -wq "docker"; then + docker run --rm -it -v $(pwd):/antora:z $image $cmd + else + echo "" + echo "This build script is using $runtime to run the build in an isolated environment. You might be asked for your password." + echo "You can avoid this by adding your user to the 'docker' group, but be aware of the security implications. See https://docs.docker.com/install/linux/linux-postinstall/." + echo "" + sudo docker run --rm -it -v $(pwd):/antora:z $image $cmd + fi + else echo "" - sudo $runtime run --rm -it -v $(pwd):/antora:z $image $cmd + echo "Error: Container runtime haven't been found on your system. Fix it by:" + echo "$ sudo dnf install podman" + exit 1 fi fi diff --git a/preview.sh b/preview.sh index 16d02d8..acc52af 100755 --- a/preview.sh +++ b/preview.sh @@ -9,28 +9,10 @@ if [ "$(uname)" == "Darwin" ]; then elif [ "$(expr substr $(uname -s) 1 5)" == "Linux" ]; then # Running on Linux. - # Check whether podman is available, else faill back to docker - # which requires root. - if [ -f /usr/bin/podman ]; then - runtime="podman" - else - runtime="docker" - fi - if groups | grep -wq "docker"; then - # Check if the current user is in the "docker" group. If true, no sudo is needed. - echo "" - echo "This build script is using $runtime to run the build in an isolated environment." - echo "The preview will be available at http://localhost:8080/" - echo "" - $runtime run --rm -v $(pwd):/antora:ro,z -v $(pwd)/nginx.conf:/etc/nginx/conf.d/default.conf:ro,z -p 8080:80 nginx - else - # User isn't in the docker group; run the command with sudo. - echo "" - echo "This build script is using $runtime to run the build in an isolated environment. You might be asked for your password." - echo "You can avoid this by adding your user to the 'docker' group, but be aware of the security implications. See https://docs.docker.com/install/linux/linux-postinstall/." - echo "" - echo "The preview will be available at http://localhost:8080/" - echo "" - sudo $runtime run --rm -v $(pwd):/antora:ro,z -v $(pwd)/nginx.conf:/etc/nginx/conf.d/default.conf:ro,z -p 8080:80 nginx - fi + # Fedora Workstation has python3 installed as a default, so using that + echo "" + echo "The preview is available at http://localhost:8080" + echo "" + cd ./public + python3 -m http.server 8080 fi From 0b112bb8cf07988841054a55fd8f6255346db58f Mon Sep 17 00:00:00 2001 From: Petr Bokoc Date: Sep 17 2019 12:12:29 +0000 Subject: [PATCH 5/9] Add LICENSE --- diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..ba8d521 --- /dev/null +++ b/LICENSE @@ -0,0 +1,10 @@ +The text of and illustrations in this document are licensed by Red Hat +under a Creative Commons Attribution–Share Alike 3.0 Unported license +("CC-BY-SA"). An explanation of CC-BY-SA is available at +http://creativecommons.org/licenses/by-sa/3.0/. In accordance with +CC-BY-SA, if you distribute this document or an adaptation of it, you +must provide the URL for the original version. + +Red Hat, as the licensor of this document, waives the right to +enforce, and agrees not to assert, Section 4d of CC-BY-SA to the +fullest extent permitted by applicable law. From 0169a6e6f4336420fa4008b72e39cc0ca079c413 Mon Sep 17 00:00:00 2001 From: Petr Bokoc Date: Sep 18 2019 11:54:02 +0000 Subject: [PATCH 6/9] Add indexes for subsections so each heading in the ToC is a link --- diff --git a/modules/release-notes/nav.adoc b/modules/release-notes/nav.adoc index a2a3bd9..abab9d7 100644 --- a/modules/release-notes/nav.adoc +++ b/modules/release-notes/nav.adoc @@ -5,7 +5,7 @@ include::{partialsdir}/entities.adoc[] *** xref:welcome/Overview.adoc[Overview] *** xref:welcome/Hardware_Overview.adoc[Hardware Overview] *** xref:welcome/Feedback.adoc[Feedback] -** System Administrators +** xref:sysadmin/Sysadmins.adoc[System Administrators] *** xref:sysadmin/Distribution.adoc[Distribution-wide Changes] *** xref:sysadmin/Modularity.adoc[Fedora Add-On Modularity] *** xref:sysadmin/Kernel.adoc[Kernel] @@ -16,11 +16,11 @@ include::{partialsdir}/entities.adoc[] *** xref:sysadmin/Mail_Servers.adoc[Mail Servers] *** xref:sysadmin/Xorg.adoc[X.Org] *** xref:sysadmin/System_Utilities.adoc[System Utilities] -** Desktop Users +** xref:desktop/Desktop_index.adoc[Desktop Users] *** xref:desktop/Desktop.adoc[Desktop] *** xref:desktop/Networking.adoc[Networking] *** xref:desktop/I18n.adoc[Internationalization] -** Developers +** xref:developers/Developers.adoc[Developers] *** xref:developers/Development_Tools.adoc[Development Tools] *** xref:developers/Development_C.adoc[C] *** xref:developers/Containers.adoc[Containers] diff --git a/modules/release-notes/pages/desktop/Desktop_index.adoc b/modules/release-notes/pages/desktop/Desktop_index.adoc new file mode 100644 index 0000000..70c3b95 --- /dev/null +++ b/modules/release-notes/pages/desktop/Desktop_index.adoc @@ -0,0 +1,6 @@ +include::{partialsdir}/entities.adoc[] + += Notable changes for desktop users + +This section lists changes in Fedora {PRODVER} relevant to desktop users. +Use the navigation tab on the left to view release notes for various fields of interest. diff --git a/modules/release-notes/pages/developers/Developers.adoc b/modules/release-notes/pages/developers/Developers.adoc new file mode 100644 index 0000000..1488cd6 --- /dev/null +++ b/modules/release-notes/pages/developers/Developers.adoc @@ -0,0 +1,6 @@ +include::{partialsdir}/entities.adoc[] + += Notable changes for developers + +This section lists changes in Fedora {PRODVER} relevant to developers. +Use the navigation tab on the left to view release notes for various languages. diff --git a/modules/release-notes/pages/index.adoc b/modules/release-notes/pages/index.adoc index 841880e..72ab9be 100644 --- a/modules/release-notes/pages/index.adoc +++ b/modules/release-notes/pages/index.adoc @@ -10,6 +10,11 @@ Release Notes for Fedora {PRODVER} This document provides the release notes for Fedora {PRODVER}. It describes major changes offered as compared to Fedora {PREVVER}. -- +[NOTE] +==== +Use the tab on the left to navigate the Release Notes as well as other documentation for Fedora {PRODVER}. +==== + image:title_logo.svg[Fedora Logo] include::{partialsdir}/Legal_Notice.adoc[] diff --git a/modules/release-notes/pages/sysadmin/Sysadmins.adoc b/modules/release-notes/pages/sysadmin/Sysadmins.adoc new file mode 100644 index 0000000..ff39b19 --- /dev/null +++ b/modules/release-notes/pages/sysadmin/Sysadmins.adoc @@ -0,0 +1,6 @@ +include::{partialsdir}/entities.adoc[] + += Notable changes for system administrators + +This section lists changes in Fedora {PRODVER} relevant to system administrators. +Use the navigation tab on the left to view release notes for various fields of interest. From bf4985af3ce980a8792476a9d9da80ee527cc735 Mon Sep 17 00:00:00 2001 From: Petr Bokoc Date: Sep 19 2019 09:21:44 +0000 Subject: [PATCH 7/9] Fix heading in sysadmin/distribution --- diff --git a/modules/release-notes/pages/sysadmin/Distribution.adoc b/modules/release-notes/pages/sysadmin/Distribution.adoc index a04686c..efbfd5d 100644 --- a/modules/release-notes/pages/sysadmin/Distribution.adoc +++ b/modules/release-notes/pages/sysadmin/Distribution.adoc @@ -1,5 +1,5 @@ include::{partialsdir}/entities.adoc[] -[[select-modularity]] -= Fedora Add-On Modularity +[[select-distribution]] += Distribution-wide Changes From efcc082f3525dba0bec09dbea327574728416507 Mon Sep 17 00:00:00 2001 From: Petr Bokoc Date: Sep 19 2019 09:28:47 +0000 Subject: [PATCH 8/9] Update README --- diff --git a/README.md b/README.md index 2b803ef..df7d112 100644 --- a/README.md +++ b/README.md @@ -8,16 +8,44 @@ Pull Requests](https://docs.pagure.org/pagure/usage/pull_requests.html). General appearance issues and publishing issues should be reported against the [publishing software](https://pagure.io/fedora-docs/docs-fp-o). -## How to edit these documents +## Structure -All of this is written in AsciiDoc. It's a simple mostly-plain-text -markup language. You may want to look at: +``` +|-- README.md +|-- antora.yml ....................... 1. +|-- build.sh ......................... 2. +|-- preview.sh ....................... 3. +|-- site.yml ......................... 4. +`-- modules + `-- ROOT ......................... 5. + |-- assets + | `-- images ............... 6. + | `-- pizza.png + |-- nav.adoc ................. 7. + `-- pages .................... 8. + |-- architecture.adoc + |-- community.adoc + |-- faq.adoc + |-- index.adoc + |-- pizza-dough.adoc + `-- pizza-oven.adoc +``` +1. Metadata definition. +2. A script that does a local build. Uses docker. +3. A script that shows a preview of the site in a web browser by running a local web server. Uses docker. +4. A definition file for the build script. +5. A "root module of this documentation component". Please read below for an explanation. +6. **Images** to be used on any page. +7. **Menu definition.** Also defines the hierarchy of all the pages. +8. **Pages with the actual content.** They can be also organised into subdirectories if desired. -* [AsciiDoc Syntax Quick Reference](https://asciidoctor.org/docs/asciidoc-syntax-quick-reference/) -* [AsciiDoc Writer’s Guide](https://asciidoctor.org/docs/asciidoc-writers-guide/) -* [Antora Documentation](https://docs.antora.org/antora/1.0/page/) +## Components and Modules +Antora introduces two new terms: + +* **Component** — Simply put, a component is a part of the documentation website with its own menu. Components can also be versioned. In the Fedora Docs, we use separate components for user documentation, the Fedora Poject, Fedora council, Mindshare, FESCO, but also subprojects such as CommOps or Modulartity. +* **Module** — A component can be broken down into multiple modules. Modules still share a single menu on the site, but their sources can be stored in different git repositories, even owned by different groups. The default module is called "ROOT" (that's what is in this example). If you don't want to use multiple modules, only use "ROOT". But to define more modules, simply duplicate the "ROOT" directory and name it anything you want. You can store modules in one or more git repositories. ## Local preview @@ -25,7 +53,7 @@ This repo includes scripts to build and preview the contents of this repository. **NOTE**: Please note that if you reference pages from other repositoreis, such links will be broken in this local preview as it only builds this repository. If you want to rebuild the whole Fedora Docs site, please see [the Fedora Docs build repository](https://pagure.io/fedora-docs/docs-fp-o/) for instructions. -Both scripts use docker, so please make sure you have it installed on your system. Please see below for instructions. +Both scripts work on Fedora (using Podman) and macOS (using Docker). To build and preview the site, run: @@ -35,9 +63,64 @@ $ ./build.sh && ./preview.sh The result will be available at http://localhost:8080 -### Installing docker on Fedora +### Installing Podman on Fedora + +Fedora Workstation doesn't come with Podman preinstalled by default — so you might need to install it using the following command: + +``` +$ sudo dnf install podman +``` + +### Preview as a part of the whole Fedora Docs site + +You can also build the whole Fedora Docs site locally to see your changes in the whole context. +This is especially useful for checking if your `xref` links work properly. + +To do this, you need to clone the main [Fedora Docs build repository](https://pagure.io/fedora-docs/docs-fp-o), modify the `site.yml` file to reference a repo with your changes, and build it. +Steps: + +Clone the main repository and cd into it: + +``` +$ git clone https://pagure.io/fedora-docs/docs-fp-o.git +$ cd docs-fp-o +``` + +Find a reference to the repository you're changing in the `site.yml` file, and change it so it points to your change. +So for example, if I made a modification to the Modularity docs, I would find: + +``` +... + - url: https://pagure.io/fedora-docs/modularity.git + branches: + - master +... +``` + +And replaced it with a pointer to my fork: +``` +... + - url: https://pagure.io/forks/asamalik/fedora-docs/modularity.git + branches: + - master +... +``` + +I could also point to a local repository, using `HEAD` as a branch to preview the what's changed without the need of making a commit. + +**Note:** I would need to move the repository under the `docs-fp-o` directory, because the builder won't see anything above. +So I would need to create a `repositories` directory in `docs-fp-o` and copy my repository into it. ``` -$ sudo dnf install docker -$ sudo systemctl start docker && sudo systemctl enable docker +... + - url: ./repositories/modularity + branches: + - HEAD +... +``` + +To build the whole site, I would run the following in the `docs-fp-o` directory. + +``` +$ ./build.sh && ./preview.sh ``` From 2e3fbd6b4fd719528445adc72db7370c256469e2 Mon Sep 17 00:00:00 2001 From: Jaroslav Klech Date: Sep 19 2019 10:04:57 +0000 Subject: [PATCH 9/9] Describes issue #378 --- diff --git a/modules/release-notes/pages/sysadmin/Distribution.adoc b/modules/release-notes/pages/sysadmin/Distribution.adoc index efbfd5d..b6afd4a 100644 --- a/modules/release-notes/pages/sysadmin/Distribution.adoc +++ b/modules/release-notes/pages/sysadmin/Distribution.adoc @@ -3,3 +3,13 @@ include::{partialsdir}/entities.adoc[] [[select-distribution]] = Distribution-wide Changes + +[[software-repositories]] +== Software repositories + +The i686 repositories are no longer available to users to directly install Fedora {PRODVER} on i686 hardware. + +[NOTE] +==== +It is still possible to upgrade the previous Fedora releases from i686 hardware, although this leaves a user with a potentially vulnerable kernel. +==== \ No newline at end of file diff --git a/modules/release-notes/pages/sysadmin/Installation.adoc b/modules/release-notes/pages/sysadmin/Installation.adoc index c985d75..1aa6bb9 100644 --- a/modules/release-notes/pages/sysadmin/Installation.adoc +++ b/modules/release-notes/pages/sysadmin/Installation.adoc @@ -23,3 +23,9 @@ This section covers changes in the [application]*Anaconda* installer, including [[sect-installation-anaconda-other]] === Other Anaconda Changes + +[[sect-repositories]] +== Software repositories + +Fedora {PRODVER} no longer ships the i686 repositories. For more details see the xref:sysadmin/Distribution.adoc#software-repositories[Distribution-wide changes] section. +