summaryrefslogtreecommitdiff
path: root/units/systemd-firstboot.service.in
Commit message (Collapse)AuthorAge
* units: run firstboot before sysusers, so that firstboot can initialize the ↵Lennart Poettering2014-10-23
| | | | root password
* readahead: wipe out readaheadDaniel Buch2014-09-25
|
* systemd-firstboot.service: fix man page sectionMarius Tessmann2014-08-28
| | | | Found with systemd-analyze verify.
* firstboot: get rid of firstboot generator again, introduce ↵Lennart Poettering2014-07-07
| | | | | | | | ConditionFirstBoot= instead As Zbigniew pointed out a new ConditionFirstBoot= appears like the nicer way to hook in systemd-firstboot.service on first boots (those with /etc unpopulated), so let's do this, and get rid of the generator again.
* firstboot: add new component to query basic system settings on first boot, ↵Lennart Poettering2014-07-07
or when creating OS images offline A new tool "systemd-firstboot" can be used either interactively on boot, where it will query basic locale, timezone, hostname, root password information and set it. Or it can be used non-interactively from the command line when prepareing disk images for booting. When used non-inertactively the tool can either copy settings from the host, or take settings on the command line. $ systemd-firstboot --root=/path/to/my/new/root --copy-locale --copy-root-password --hostname=waldi The tool will be automatically invoked (interactively) now on first boot if /etc is found unpopulated. This also creates the infrastructure for generators to be notified via an environment variable whether they are running on the first boot, or not.