Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | units: run firstboot before sysusers, so that firstboot can initialize the ↵ | Lennart Poettering | 2014-10-23 | 1 | -2/+2 |
| | | | | root password | ||||
* | readahead: wipe out readahead | Daniel Buch | 2014-09-25 | 1 | -1/+1 |
| | |||||
* | systemd-firstboot.service: fix man page section | Marius Tessmann | 2014-08-28 | 1 | -1/+1 |
| | | | | Found with systemd-analyze verify. | ||||
* | firstboot: get rid of firstboot generator again, introduce ↵ | Lennart Poettering | 2014-07-07 | 1 | -0/+1 |
| | | | | | | | | 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 Poettering | 2014-07-07 | 1 | -0/+23 |
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. |