Migration test of Quick Docs
Find a file
w4tsn 4274f89f00
pages/yubikey: remove note on setting secontext
The access to the ~/.yubico directory is done using the PAM module, not
sshd directly. PAM sets the context of that directory to auth_home_t
which PAM is allowed to access. No need to set the context to
ssh_home_t.

Apart from that using chcon is a volatile operation and not intended for
persistent changes which was the intent of the note though. The label
would be reset in a system recovery scenario.
2023-02-17 20:14:38 +01:00
modules/ROOT pages/yubikey: remove note on setting secontext 2023-02-17 20:14:38 +01:00
.gitignore
antora.yml
build.sh feat: use improved watcher/rebuilder script 2022-09-16 12:47:15 +01:00
builder.sh chore(builder.sh): sync with upstream version 2022-11-18 10:24:24 +00:00
LICENSE
preview.sh feat: use improved watcher/rebuilder script 2022-09-16 12:47:15 +01:00
README.md Update local preview instructions in README 2022-09-16 22:43:04 +03:00
site.yml feat: use new URL for UI bundle 2022-04-13 12:25:13 +01: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 a script to build, watch 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.

The script uses podman. Please make sure you have podman installed on your system (you can also use Docker, but on Fedora podman is recommended).

Installing dependencies on Fedora

$ sudo dnf install podman inotify-tools

To build, watch and preview the site, run:

$ ./builder.sh

The result will be available at http://localhost:8080 and automatically regenerated when the repo contents change.