summaryrefslogtreecommitdiff
path: root/units/systemd-journal-catalog-update.service.in
Commit message (Collapse)AuthorAgeFilesLines
* Add SPDX license headers to unit filesZbigniew Jędrzejewski-Szmek2017-11-191-0/+2
|
* units: fix condition for systemd-journal-catalog-update.service (#4990)Lennart Poettering2016-12-291-1/+1
| | | | | The service is supposed to regenerate the catalog index whenever /usr is updated, but /var is not. Hence the ConditionNeedsUpdate= line should actually reference /var, as that's where the index file is located.
* units: so far we defaulted to 90s as default timeout for most things, let's ↵Lennart Poettering2015-02-021-1/+1
| | | | | | do so for our oneshot services too Fewer surprises, and stuff...
* units: set TimeoutSec on some oneshot servicesZbigniew Jędrzejewski-Szmek2015-02-011-0/+1
| | | | | | | | | | Services which are not crucial to system bootup, and have Type=oneshot can effectively "hang" the system if they fail to complete for whatever reason. To allow the boot to continue, kill them after a timeout. In case of systemd-journal-flush the flush will continue in the background, and in the other two cases the job will be aborted, but this should not result in any permanent problem.
* readahead: wipe out readaheadDaniel Buch2014-09-251-1/+1
|
* units: drop RefuseManualStart= from a couple of update servicesLennart Poettering2014-06-161-2/+0
| | | | | | | | The only update service we really need to guard like this is systemd-tmpfiles-setup.service since if invoked manually might create /var/run/nologin and thus blocking the user from login. The other services are pretty much idempotent and don't suffer by this problem, hence let's simplify them.
* units: rebuild /etc/passwd, the udev hwdb and the journal catalog files on bootLennart Poettering2014-06-131-0/+22
Only when necessary of course, nicely guarded with the new ConditionNeedsUpdate= condition we added.