summaryrefslogtreecommitdiff
path: root/docs/CGROUP_DELEGATION.md
Commit message (Collapse)AuthorAgeFilesLines
* doc: link to html versions of cgroup docsZbigniew Jędrzejewski-Szmek2020-01-091-4/+4
| | | | Also stop linking to some (obsolete) v1 documentation.
* docs: make it prettyTobias Bernard2019-12-111-0/+1
| | | | | | | Add custom Jekyll theme, logo, webfont and .gitignore FIXME: the markdown files have some H1 headers which need to be replaced with H2
* docs: place all our markdown docs in rough categoriesLennart Poettering2019-12-111-0/+1
|
* docs: CGROUP_DELEGATION: fix a typo in "that"Jan Pokorný2019-06-181-1/+1
|
* Merge pull request #11317 from filbranden/docs1Zbigniew Jędrzejewski-Szmek2019-01-031-0/+4
|\ | | | | Improvements to systemd.io generation
| * docs: add a "front matter" snippet to our markdown pagesFilipe Brandenburger2019-01-021-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It turns out Jekyll (the engine behind GitHub Pages) requires that pages include a "Front Matter" snippet of YAML at the top for proper rendering. Omitting it will still render the pages, but including it opens up new possibilities, such as using a {% for %} loop to generate index.md instead of requiring a separate script. I'm hoping this will also fix the issue with some of the pages (notably CODE_OF_CONDUCT.html) not being available under systemd.io Tested locally by rendering the website with Jekyll. Before this change, the *.md files were kept unchanged (so not sure how that even works?!), after this commit, proper *.html files were generated from it.
* | cgroup: s/cgroups? ?v?([0-9])/cgroup v\1/gIChris Down2019-01-031-33/+33
|/ | | | | | | | | | Nitpicky, but we've used a lot of random spacings and names in the past, but we're trying to be completely consistent on "cgroup vN" now. Generated by `fd -0 | xargs -0 -n1 sed -ri --follow-symlinks 's/cgroups? ?v?([0-9])/cgroup v\1/gI'`. I manually ignored places where it's not appropriate to replace (eg. "cgroup2" fstype and in src/shared/linux).
* docs: document the .control/ subcgroup contract in the docsLennart Poettering2018-11-261-0/+13
|
* Fix a few docs typos (#10907)nikolas2018-11-241-1/+1
| | | Found with [codespell](https://github.com/codespell-project/codespell)
* docs: clarify controller mount logic in hybrid cgroups modeLennart Poettering2018-09-251-4/+8
| | | | Fixes: #10107
* docs: move doc/ to docs/Filipe Brandenburger2018-09-081-0/+456
The docs/ directory is special in GitHub, since it can be used to serve GitHub Pages from, so there's a benefit to switching to it in order to expose it directly as a website. Updated references to it from the documentations themselves, from the CONTRIBUTING.md file and from Meson build files.