summaryrefslogtreecommitdiffstats
path: root/catalog/systemd.catalog.in (follow)
Commit message (Collapse)AuthorAgeFilesLines
* tree-wide: remove Lennart's copyright linesLennart Poettering2018-06-141-2/+0
| | | | | | | | | | | These lines are generally out-of-date, incomplete and unnecessary. With SPDX and git repository much more accurate and fine grained information about licensing and authorship is available, hence let's drop the per-file copyright notice. Of course, removing copyright lines of others is problematic, hence this commit only removes my own lines and leaves all others untouched. It might be nicer if sooner or later those could go away too, making git the only and accurate source of authorship information.
* tree-wide: drop 'This file is part of systemd' blurbLennart Poettering2018-06-141-2/+0
| | | | | | | | | | | | | | | | This part of the copyright blurb stems from the GPL use recommendations: https://www.gnu.org/licenses/gpl-howto.en.html The concept appears to originate in times where version control was per file, instead of per tree, and was a way to glue the files together. Ultimately, we nowadays don't live in that world anymore, and this information is entirely useless anyway, as people are very welcome to copy these files into any projects they like, and they shouldn't have to change bits that are part of our copyright header for that. hence, let's just get rid of this old cruft, and shorten our codebase a bit.
* tree-wide: drop license boilerplateZbigniew Jędrzejewski-Szmek2018-04-061-13/+0
| | | | | | | | | | Files which are installed as-is (any .service and other unit files, .conf files, .policy files, etc), are left as is. My assumption is that SPDX identifiers are not yet that well known, so it's better to retain the extended header to avoid any doubt. I also kept any copyright lines. We can probably remove them, but it'd nice to obtain explicit acks from all involved authors before doing that.
* Make taint message structured and add catalog entryZbigniew Jędrzejewski-Szmek2017-12-141-0/+17
| | | | | | | | | | | | | | | | | | | Dec 14 14:10:54 krowka systemd[1]: System is tainted: overflowgid-not-65534 -- Subject: The system is configured in a way that might cause problems -- Defined-By: systemd -- Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel -- -- The following "tags" are possible: -- - "split-usr" — /usr is a separate file system and was not mounted when systemd -- was booted -- - "cgroups-missing" — the kernel was compiled without cgroup support or access -- to expected interface files is resticted -- - "var-run-bad" — /var/run is not a symlink to /run -- - "overflowuid-not-65534" — the kernel user ID used for "unknown" users (with -- NFS or user namespaces) is not 65534 -- - "overflowgid-not-65534" — the kernel group ID used for "unknown" users (with -- NFS or user namespaces) is not 65534 -- Current system is tagged as overflowgid-not-65534.
* catalog: don't say "systemd" when we mean "system"Lennart Poettering2017-12-131-1/+1
| | | | | Yeah, it's hard to type "system", if all you ever type is "systemd", but it's still a typo in this case.
* Add SPDX license identifiers to catalog and po filesZbigniew Jędrzejewski-Szmek2017-11-191-0/+2
|
* catalog: split out the one German language entry we have in systemd.catalog ↵Lennart Poettering2017-09-261-12/+0
| | | | | | | into its own file All other languages have their own file, let's make sure German does too.
* catalog: add two recent message ID additions to catalogLennart Poettering2017-09-261-0/+15
| | | | | | | | Just brief texts for now, so that we have something (And in the long rung we should beef all this up, and add a test that every ID listed in sd-messages.h is accompanied by a matching catalog entry)
* catalog: use https:// in URLsAsciiWolf2017-02-211-5/+5
|
* pid1,catalog: use a different MESSAGE_ID for user manager startupZbigniew Jędrzejewski-Szmek2016-12-111-2/+13
| | | | | | | | | | | | This add a new message id for the end of user instance startup. User manager startup is a different beast then the system startup. Their descriptions are completely different too. Let's just separate them. Partially fixes #3351. Also remove "successful" from the description, since we don't know if the startup was successful or not.
* coredump,catalog: give better notice when a core file is truncatedZbigniew Jędrzejewski-Szmek2016-09-281-0/+11
| | | | | | | | | | | | | | | coredump had code to check if copy_bytes() hit the max_bytes limit, and refuse further processing in that case. But in 84ee0960443, the return convention for copy_bytes() was changed from -EFBIG to 1 for the case when the limit is hit, so the condition check in coredump couldn't ever trigger. But it seems that *do* want to process such truncated cores [1]. So change the code to detect truncation properly, but instead of returning an error, give a nice log entry. [1] https://github.com/systemd/systemd/issues/3883#issuecomment-239106337 Should fix (or at least alleviate) #3883.
* catalog: make support URL to show in shipped catalog entries configurable ↵Lennart Poettering2016-06-261-0/+334
(#3597) Let's allow distros to change the support URL to expose in catalog entries by default. It doesn't make sense to direct end-users to the upstream project for common errors. This adds a --with-support-url= switch to configure, which allows overriding the default at build-time. Fixes: #2516