summaryrefslogtreecommitdiffstats
path: root/mkosi.postinst.chroot (follow)
Commit message (Collapse)AuthorAgeFilesLines
* ci: Don't add testuser to wheel and systemd-journal groupsDaan De Meyer2024-09-191-7/+0
| | | | | This breaks TEST-74-AUX-UTILS when run in a VM as the user gets access to journal files that the test expects it can't access.
* mkosi: Beef up testuser a bitDaan De Meyer2024-07-311-1/+14
| | | | Give it a password and add it to some common groups.
* mkosi: Don't fail if /var/log/journal does not existDaan De Meyer2024-07-101-1/+1
|
* mkosi: Adapt configuration to take into account configuration reworkDaan De Meyer2024-07-091-0/+172
In https://github.com/systemd/mkosi/pull/2847, the '@' specifier is removed, CLI arguments take priority over configuration files again and the "main" image is defined at the top level instead of in mkosi.images/. Additionally, not every setting from the top level configuration is inherited by the images in mkosi.images/ anymore, only settings which make sense to be inherited are inherited. This commit gets rid of all the usages of '@', moves the "main" image configuration from mkosi.images/system to the top level and gets rid of various hacks we had in place to deal with quirks of the old configuration parsing logic. We also remove usages of Images= and --append as these options are removed by the mentioned PR.