summaryrefslogtreecommitdiffstats
path: root/units/systemd-journald-varlink@.socket (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-08-17dissect: Set SYSTEMD_DISSECT_DEVICE to path of loop deviceDaan De Meyer2-1/+7
For some use cases we want to operate on the loop device that systemd-dissect has attached the loop device to, so let's make that easily accessible.
2023-08-17test: Check that SELinux policy is available before running SELinux test ↵Johannes Segitz1-3/+8
(#28868) * test: Check that SELinux policy is available before running SELinux test --------- Co-authored-by: Frantisek Sumsal <frantisek@sumsal.cz>
2023-08-17systemd-bsod: Add "--continuous" optionOMOJOLA JOSHUA4-8/+63
2023-08-17meson: Use rsync to copy test data directoriesDaan De Meyer1-3/+12
install_subdir() does not copy symlinks but copies the file they point to. We also get a very ugly warning in the meson install output: """ Warning: trying to copy a symlink that points to a file. This will copy the file, but this will be changed in a future version of Meson to copy the symlink as is. Please update your build definitions so that it will not break when the change happens. """ Let's fix both problems at once by using rsync which does the right thing. Verified by running systemd-dissect --mtree on both the install output before and after and all the symlinks are now correctly preserved.
2023-08-17repart: Make sure we keep trailing slashes in ExcludeFiles=Daan De Meyer1-1/+1
We conditionalize behavior based on whether these paths have trailing slashes or not, so let's make sure we keep them intact.
2023-08-17parse-helpers: Add PATH_KEEP_TRAILING_SLASHDaan De Meyer2-4/+5
2023-08-17path-util: Add path_simplify_full()Daan De Meyer3-23/+38
Sometimes its useful to keep a trailing slash in the path so let's add path_simplify_full() and a flag to do just that.
2023-08-17bus-polkit: don't propagate error from polkitDavid Tardon1-7/+10
An error reply from polkit is a valid case and should not be propagated as failure of async_polkit_callback(). It should only be saved here. It'll be returned by bus_verify_polkit_async() later, when it's called for the same method again. Follow-up for #26365.
2023-08-17systemd-stub: ignore EFI shell unauthenticated kernel command line if we are ↵Emanuele Giuseppe Esposito1-2/+3
in confidential vms
2023-08-17open-file: add missing assertDavid Tardon1-0/+2
2023-08-17systemctl-show: rename cleanup functionDavid Tardon1-2/+2
2023-08-17tree-wide: use LIST_POP()David Tardon9-39/+19
2023-08-17tree-wide: use LIST_CLEAR()David Tardon11-74/+13
2023-08-17list: add LIST_CLEAR() helper that empties the listDavid Tardon2-0/+37
2023-08-17core/mount: disable timer event source when USEC_INFINITYYu Watanabe1-3/+3
Setting USEC_INFINITY to timer event source should not cause any problem. But, disabling timer event source should be preferable. [zjs: simplify the call to sd_event_source_set_enabled()]