summaryrefslogtreecommitdiff
path: root/docs/CONVERTING_TO_HOMED.md
Commit message (Collapse)AuthorAgeFilesLines
* docs: tweak rsync flags for moving existing home dir to systemd-homedwouter bolsterlee2023-02-011-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | The documentation on moving an existing homedir into a systemd-homed managed one suggests using rsync(1) with a bunch of flags to preserve as much metadata as possible: permissions, xattrs, timestamps, etc. The previously suggested flags were: rsync -aHAXv --remove-source-files … … which does include mtimes, but not ctimes and atimes, because -a does not include those: --archive, -a archive mode is -rlptgoD (no -A,-X,-U,-N,-H) This change adds the -N and -U flags to preserve even more file timestamps, turning the command into: rsync -aHANUXv --remove-source-files … The new flags are: --crtimes, -N preserve create times (newness) --atimes, -U preserve access (use) times
* Use https for man7.orgMichael Biebl2022-06-281-2/+2
|
* docs: use relative linksBenjamin Franzke2022-05-181-4/+4
| | | | | | | | | | | | | | | | Allows for links to work both on systemd.io (or forks) and when viewed on https://github.com/systemd/systemd/tree/main/docs Note that the markdown links are converted by jekyll-relative-links[1] to html. This plugin is enabled by default on github pages[2][3]. Due to a bug in jekyll-relative-links – see https://github.com/benbalter/jekyll-relative-links/issues/61 – we need to avoid line-wrapped links when using relative markdown links. [1] https://github.com/benbalter/jekyll-relative-links [2] https://github.blog/2016-12-05-relative-links-for-github-pages/ [3] https://docs.github.com/en/pages/setting-up-a-github-pages-site-with-jekyll/about-github-pages-and-jekyll#plugins
* docs: add spdx tags to all .md filesZbigniew Jędrzejewski-Szmek2021-09-271-0/+1
| | | | | | I have no idea if this is going to cause rendering problems, and it is fairly hard to check. So let's just merge this, and if it github markdown processor doesn't like it, revert.
* Update the rsync command in CONVERTING_TO_HOMEDGergely Polonkai2020-05-061-2/+2
| | | The old version of this command will delete everything under the new home directory (including `.identity`), rendering the directory unusable with homed.
* docs: introduce documentation category for user/group stuffLennart Poettering2020-04-111-1/+1
| | | | | We have so many different docs on various facets of user/group stuff, let's add our own category for it.
* docs: add brief document how to convert home directories to homedLennart Poettering2020-04-101-0/+135