Migration test of Quick Docs
Find a file
Lukas Zapletal 8e1c962dd7 Update dnf upgrade for 3rd party software
This is now the second time when rpmconf reverted me
google-chrome-stable.repo file back to version where I have `enabled=0`.
It looks like this package generates the repo file in the post scriplet
and does not mention it in the list of installed files, this probably
tricks rpmconf to do an incorrect action. I would love to investigate
further and maybe file a bug for chrome/chromium, but now that I
finished my upgrade I can't look back why rpmconf thought this file
needs updating - scriplet looks like this:

    YUM_REPO_FILE="/etc/yum.repos.d/google-chrome.repo"
    install_yum() {
      install_rpm_key

      if [ ! "$REPOCONFIG" ]; then
        return 0
      fi

      if [ -d "/etc/yum.repos.d" ]; then
    cat > "$YUM_REPO_FILE" << REPOCONTENT
    [google-chrome]
    name=google-chrome
    baseurl=$REPOCONFIG/$DEFAULT_ARCH
    enabled=1
    gpgcheck=1
    gpgkey=https://dl.google.com/linux/linux_signing_key.pub
    REPOCONTENT
      fi
    }

It was likely some older version of the package. Anyway, I thought I'd
drop a warning note for others, because I accidentally disabled this
repo which left my Chrome on an old version for about a year until it
websites started warning me about an unsupported version. This is
dangerous, my main browser is Firefox but this could be a security
problem for others.
2020-11-19 08:32:41 +01:00
modules/ROOT Update dnf upgrade for 3rd party software 2020-11-19 08:32:41 +01:00
.gitignore switch to Antora part 2018-07-27 18:53:34 +02:00
antora.yml switch to Antora part 2018-07-27 18:53:34 +02:00
build.sh Quote command substitution which may have spaces 2020-07-28 18:01:38 +00:00
LICENSE Add LICENSE 2019-09-17 14:29:46 +02:00
preview.sh Quote command substitution which may have spaces 2020-07-28 18:01:38 +00:00
README.md Modified README.md to remove referrences to Docker 2019-11-05 23:00:29 -05:00
site.yml switch to Antora part 2018-07-27 18:53:34 +02:00

Fedora Quick Docs

This is the content repository for the Fedora Quick Docs.

Please report Issues and submit Pull Requests for Content Fixes here. Never done a pull request (or "PR")? Here's the Pagure documentation for Pull Requests.

General appearance issues and publishing issues should be reported against the publishing software.

Reviewers needed!

As discussed in issue #107, a lot of pages in this repository are in need of a technical review. Pages which need one are marked by a disclaimer on the top of the file, right below the top level heading. Any reviews are greatly appreciated. If you want to help, pick one of the pages, check it for accuracy, and then:

  • If you find that all information on the page is correct, either open a pull request which states that you found no problems and which removes the disclaimer from the top (the include::) statement at the top, or open an issue against this repository stating which page you reviewed and found no errors in so we can remove it
  • If you find errors, then either open a pull request fixing them and removing the disclaimer from the top, or open an issue and describe the errors you found, and how to fix them if you know a fix

How to edit these documents

All of this is written in AsciiDoc. It's a simple mostly-plain-text markup language. You may want to look at:

Local preview

This repo includes scripts to build and preview the contents of this repository.

NOTE: Please note that if you reference pages from other repositories, 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 for instructions.

Both scripts use podman in F30 and above. Please make sure you have podman installed on your system.

Installing podman on Fedora

$ sudo dnf install podman

To build and preview the site, run:

$ ./build.sh && ./preview.sh

The result will be available at http://localhost:8080