summaryrefslogtreecommitdiffstats
path: root/man/systemd-firstboot.xml (follow)
Commit message (Collapse)AuthorAgeFilesLines
* man: more hyperlinks and other fixesZbigniew Jędrzejewski-Szmek2023-11-061-2/+2
| | | | Closes https://github.com/systemd/systemd/issues/29814.
* man/systemd-firstboot: /etc/ empty -> unpopulatedMike Yuan2023-09-251-1/+1
| | | | | We use the phrase "unpopulated" in systemd.unit(5) too. And "/etc/ is empty" is simply spurious.
* man: update version informationAbderrahim Kitouni2023-09-191-3/+9
| | | | | | | | As I noticed a lot of missing information when trying to implement checking for missing info. I reimplemented the version information script to be more robust, and here is the result. Follow up to ec07c3c80b2b1bfa6788500202006ff85f5ae4f4
* man: add version infoAbderrahim Kitouni2023-08-291-20/+64
| | | | | | | | This tries to add information about when each option was added. It goes back to version 183. The version info is included from a separate file to allow generating it, which would allow more control on the formatting of the final output.
* man: make sure credentials properly show up in directives indexLennart Poettering2023-07-041-9/+9
|
* creds: Add ImportCredential=Daan De Meyer2023-06-081-2/+2
| | | | | | ImportCredential= takes a credential name and searches for a matching credential in all the credential stores we know about it. It supports globs which are expanded so that all matching credentials are loaded.
* firstboot: clarify that machine-id options are only offline, add missing docsZbigniew Jędrzejewski-Szmek2023-05-231-29/+34
| | | | | | | | | | | Let's flat out refuse to configure machine-id on a running system with systemd-firstboot. It wouldn't work anyway, because by the time firstboot is started, pid1 has created /etc/machine-id, possibly with "unitialized", so firstboot wouldn't touch the file. (If --force is specified, it works. So let's allow that in case people want to do crazy things.) While at it, add missing descriptions of various things that were added over time, and group descriptions of similar options together.
* firstboot: Add --reset optionDaan De Meyer2023-04-011-0/+10
| | | | | | This can be used to prepare an image for firstboot by removing all files that systemd knows about that contain machine specific information.
* vconsole: permit configuration of vconsole settings via credentialsLennart Poettering2023-01-051-1/+9
|
* tree-wide: BLS and DPS are now on uapi-group websiteZbigniew Jędrzejewski-Szmek2022-11-211-1/+1
|
* man: fix assorted issues reported by the manpage-l10n projectZbigniew Jędrzejewski-Szmek2021-07-271-1/+1
| | | | Fixes #20297.
* tree-wide: fix "the the" and "a a"Yu Watanabe2021-06-301-2/+2
|
* firstboot: allow provisioning of firstboot params via creds tooLennart Poettering2021-03-261-0/+62
|
* man: various typos and other small issuesZbigniew Jędrzejewski-Szmek2021-01-291-2/+2
| | | | Fixes #18397.
* license: LGPL-2.1+ -> LGPL-2.1-or-laterYu Watanabe2020-11-091-1/+1
|
* man: use trailing slash on directories in more placesZbigniew Jędrzejewski-Szmek2020-10-051-1/+1
|
* man: assorted small fixesZbigniew Jędrzejewski-Szmek2020-09-301-2/+2
| | | | This is almost all of #17177.
* firstboot: Add --root-shell optionDaan De Meyer2020-07-221-2/+14
|
* firstboot: Tighten up passwd/shadow handlingDaan De Meyer2020-07-221-2/+3
| | | | | | | | | | | | | | | | | There are a lot of edge cases that the current implementation doesn't handle, especially in cases where one of passwd/shadow exists and the other doesn't exist. For example, if --root-password is specified, we will write /etc/shadow but won't add a root entry to /etc/passwd if there is none. To fix some of these issues, we constrain systemd-firstboot to only modify /etc/passwd and /etc/shadow if both do not exist already (or --force) is specified. On top of that, we calculate all necessary information for both passwd and shadow upfront so we can take it all into account when writing the actual files. If no root password options are given --force is specified or both files do not exist, we lock the root account for security purposes.
* firstboot: add option to turn off welcome text displayLennart Poettering2020-07-071-0/+8
|
* man: document the new --image= switch of systemd-firstbootLennart Poettering2020-07-071-0/+12
|
* firstboot: Add --kernel-command-line optionDaan De Meyer2020-05-271-0/+9
|
* firstboot: Add --root-password-hashed optionDaan De Meyer2020-05-271-10/+10
|
* firstboot: Add --delete-root-password optionDaan De Meyer2020-05-271-0/+8
|
* firstboot: Add --force optionDaan De Meyer2020-05-271-0/+9
|
* tree-wide: use "hostname" spelling everywhereZbigniew Jędrzejewski-Szmek2020-04-211-2/+2
| | | | | | | | It's not that I think that "hostname" is vastly superior to "host name". Quite the opposite — the difference is small, and in some context the two-word version does fit better. But in the tree, there are ~200 occurrences of the first, and >1600 of the other, and consistent spelling is more important than any particular spelling choice.
* man: use same header for all filesZbigniew Jędrzejewski-Szmek2019-03-141-1/+1
| | | | | | | The "include" files had type "book" for some raeason. I don't think this is meaningful. Let's just use the same everywhere. $ perl -i -0pe 's^..DOCTYPE (book|refentry) PUBLIC "-//OASIS//DTD DocBook XML V4.[25]//EN"\s+"http^<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"\n "http^gms' man/*.xml
* man: standarize on one-line license headerZbigniew Jędrzejewski-Szmek2019-03-141-4/+1
| | | | | | No need to waste space, and uniformity is good. $ perl -i -0pe 's|\n+<!--\s*SPDX-License-Identifier: LGPL-2.1..\s*-->|\n<!-- SPDX-License-Identifier: LGPL-2.1+ -->|gms' man/*.xml
* man: drop unused <authorgroup> tags from man sourcesZbigniew Jędrzejewski-Szmek2018-06-141-9/+0
| | | | | | | | | | | | Docbook styles required those to be present, even though the templates that we use did not show those names anywhere. But something changed semi-recently (I would suspect docbook templates, but there was only a minor version bump in recent years, and the changelog does not suggest anything related), and builds now work without those entries. Let's drop this dead weight. Tested with F26-F29, debian unstable. $ perl -i -0pe 's/\s*<authorgroup>.*<.authorgroup>//gms' man/*xml
* tree-wide: remove Lennart's copyright linesLennart Poettering2018-06-141-2/+0
| | | | | | | | | | | These lines are generally out-of-date, incomplete and unnecessary. With SPDX and git repository much more accurate and fine grained information about licensing and authorship is available, hence let's drop the per-file copyright notice. Of course, removing copyright lines of others is problematic, hence this commit only removes my own lines and leaves all others untouched. It might be nicer if sooner or later those could go away too, making git the only and accurate source of authorship information.
* tree-wide: drop 'This file is part of systemd' blurbLennart Poettering2018-06-141-2/+0
| | | | | | | | | | | | | | | | This part of the copyright blurb stems from the GPL use recommendations: https://www.gnu.org/licenses/gpl-howto.en.html The concept appears to originate in times where version control was per file, instead of per tree, and was a way to glue the files together. Ultimately, we nowadays don't live in that world anymore, and this information is entirely useless anyway, as people are very welcome to copy these files into any projects they like, and they shouldn't have to change bits that are part of our copyright header for that. hence, let's just get rid of this old cruft, and shorten our codebase a bit.
* tree-wide: drop license boilerplateZbigniew Jędrzejewski-Szmek2018-04-061-13/+0
| | | | | | | | | | Files which are installed as-is (any .service and other unit files, .conf files, .policy files, etc), are left as is. My assumption is that SPDX identifiers are not yet that well known, so it's better to retain the extended header to avoid any doubt. I also kept any copyright lines. We can probably remove them, but it'd nice to obtain explicit acks from all involved authors before doing that.
* Add SPDX license identifiers to man pagesZbigniew Jędrzejewski-Szmek2017-11-191-0/+2
|
* systemd-firstboot: add vconsole keymap support (#7035)tblume2017-11-101-2/+18
| | | | | | | Enable systemd-firstboot to set the keymap. RFE: https://github.com/systemd/systemd/issues/6346
* man: mention ConditionFirstBoot= in systemd-firstboot(1) (#5186)Zbigniew Jędrzejewski-Szmek2017-01-311-2/+8
|
* Merge pull request #4879 from poettering/systemdZbigniew Jędrzejewski-Szmek2017-01-151-0/+14
|\
| * firstboot: add kernel cmdline option to disable firstboot wizardLennart Poettering2016-12-201-0/+14
|/ | | | If booting with systemd.firstboot=0 the wizard will be skipped.
* doc: correct orthography, word forms and missing/extraneous wordsJan Engelhardt2015-11-061-4/+4
|
* doc: correct punctuation and improve typography in documentationJan Engelhardt2015-11-061-2/+2
|
* man: revert dynamic paths for split-usr setupsTom Gundersen2015-06-181-4/+1
| | | | | | | | | | | | | | | | | | | | | | | This did not really work out as we had hoped. Trying to do this upstream introduced several problems that probably makes it better suited as a downstream patch after all. At any rate, it is not releaseable in the current state, so we at least need to revert this before the release. * by adjusting the path to binaries, but not do the same thing to the search path we end up with inconsistent man-pages. Adjusting the search path too would be quite messy, and it is not at all obvious that this is worth the effort, but at any rate it would have to be done before we could ship this. * this means that distributed man-pages does not make sense as they depend on config options, and for better or worse we are still distributing man pages, so that is something that definitely needs sorting out before we could ship with this patch. * we have long held that split-usr is only minimally supported in order to boot, and something we hope will eventually go away. So before we start adding even more magic/effort in order to make this work nicely, we should probably question if it makes sense at all.
* man: generate configured paths in manpagesFilipe Brandenburger2015-05-281-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In particular, use /lib/systemd instead of /usr/lib/systemd in distributions like Debian which still have not adopted a /usr merge setup. Use XML entities from man/custom-entities.ent to replace configured paths while doing XSLT processing of the original XML files. There was precedent of some files (such as systemd.generator.xml) which were already using this approach. This addresses most of the (manual) fixes from this patch: http://anonscm.debian.org/cgit/pkg-systemd/systemd.git/tree/debian/patches/Fix-paths-in-man-pages.patch?h=experimental-220 The idea of using generic XML entities was presented here: http://lists.freedesktop.org/archives/systemd-devel/2015-May/032240.html This patch solves almost all the issues, with the exception of: - Path to /bin/mount and /bin/umount. - Generic statements about preference of /lib over /etc. These will be handled separately by follow up patches. Tested: - With default configure settings, ran "make install" to two separate directories and compared the output to confirm they matched exactly. - Used a set of configure flags including $CONFFLAGS from Debian: http://anonscm.debian.org/cgit/pkg-systemd/systemd.git/tree/debian/rules Installed the tree and confirmed the paths use /lib/systemd instead of /usr/lib/systemd and that no other unexpected differences exist. - Confirmed that `make distcheck` still passes.
* man: fix a bunch of linksZbigniew Jędrzejewski-Szmek2015-03-141-7/+7
| | | | All hail linkchecker!
* build-sys: mark systemd-firstboot man page as conditionalMichael Biebl2015-02-041-1/+1
| | | | Rebuild Makefile-man.am accordingly.
* Reindent man pages to 2chZbigniew Jędrzejewski-Szmek2015-02-041-261/+234
|
* systemd-firstboot: fix typo in man pageMarius Tessmann2014-08-291-1/+1
|
* man: fix typosRonny Chevalier2014-08-201-2/+2
|
* man: fix typoRonny Chevalier2014-08-181-1/+1
|
* man: document systemd-firstboot(1)Lennart Poettering2014-07-071-0/+286