summaryrefslogtreecommitdiffstats
path: root/po/be@latin.po (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-04-09Add parser and printer for coredump filter maskZbigniew Jędrzejewski-Szmek5-0/+175
2020-04-09basic/parse-util: add safe_atoux64()Zbigniew Jędrzejewski-Szmek3-3/+52
2020-04-03capability: don't skip ambient caps setup if we actually have something to setLennart Poettering1-3/+5
Follow-up for 7ea4392f1e444388caa706d6bd64fb7b30dc2903 Let's not hide errors needlessly aggressively.
2020-04-03shared/dissect-image: log messages from cryptsetupTopi Miettinen1-0/+4
Before: ``` write(2, "Device /dev/loop1p1 is too small.\n", 34) = -1 ENOTCONN (Transport endpoint is not connected) ``` After: ``` $ journalctl -b -e | grep 'too small' Apr 02 16:53:30 loora systemd[343579]: Device /dev/loop1p1 is too small. ```
2020-04-03resolve: reload /etc/hosts on inode changeGiedrius Statkevičius3-2/+11
On certain distributions such as NixOS the mtime of `/etc/hosts` is locked to a fixed value. In such cases, only checking the last mtime of `/etc/hosts` is not enough - we also need to check if the st_ino/st_dev match up. Thus, let's make sure make sure that systemd-resolved also rereads `/etc/hosts` if the inode or the device containing `/etc/hosts` changes. Test script: ```bash hosts="/etc/hosts" echo "127.0.0.1 testpr" > "hosts_new" mv "hosts_new" "$hosts" resolvectl query testpr || exit 1 mtime="$(stat -c %y "$hosts")" echo "127.0.0.1 newhost" > "hosts_tmp" touch -d "$mtime" "hosts_tmp" install -p "hosts_tmp" "$hosts" sleep 10 resolvectl query newhost || exit 1 rm -f "hosts_tmp" ``` Closes #14456.
2020-04-02sd-bus: remove unused priority logicDaan De Meyer1-14/+10
2020-04-02sd-bus: Deprecate priority functionsDaan De Meyer4-28/+5
2020-04-02units: run systemd-repart only if there's configuration for itLennart Poettering1-0/+4
2020-04-02Revert "units: make systemd-repart.service installable"Lennart Poettering3-6/+2
This reverts commit 7e1ed1f3b29162df25064b33dc55ac8cf432bb0b. systemd-repart is not a user service that should be something people enable/disable, instead it should just work if there's configuration for it. It's like systemd-tmpfiles, systemd-sysusers, systemd-load-modules, systemd-binfmt, systemd-systemd-sysctl which are NOPs if they have no configuration, and thus don't hurt, but cannot be disabled since they are too deep part of the OS. This doesn't mean people couldn't disable the service if they really want to, there's after all "systemctl mask" and build-time disabling, but those are OS developer facing instead of admin facing, that's how it should be. Note that systemd-repart is in particular an initrd service, and so far enable/disable state of those is not managed anyway via "systemctl enable/disable" but more what dracut decides to package up and what not.
2020-04-02update TODOLennart Poettering1-0/+4
2020-04-02string-util: make clear that split() + FOREACH_WORD() should dieLennart Poettering1-0/+2
2020-04-02string-util: make sure we eat even half complete words in split()Lennart Poettering2-3/+8
split() and FOREACH_WORD really should die, and everything be moved to extract_first_word() and friends, but let's at least make sure that for the remaining code using it we can't deadlock by not progressing in the word iteration. Fixes: #15305
2020-04-02string-util: some minor coding style updatesLennart Poettering1-27/+40
2020-04-02update TODOLennart Poettering1-1/+3
2020-04-02sd-bus: add va_list variants of variadic convenience functionsVito Caputo6-41/+208
Consumers of the sd-bus convenience API can't make convenience helpers of their own without va_list variants. This commit is a mechanical change splitting out the existing function bodies into bare va_list variants having a 'v' suffixed to the names. The original functions now simply create the va_list before forwarding the call on to the va_list variant, and the va_list variants dispense with those steps.
2020-04-02udev: Fix SIGSEGV in AlternativeNamesPolicy handlingLénaïc Huard1-1/+1
The function sd_device_get_property_value has some paths where it exits without touching the n pointer. In those cases, n remained uninitialized until it was eventually read inside isempty where it caused the segmentation fault. Fixes #15078
2020-04-01network: can: add support for CAN-FD related propertiesRichard Petri5-0/+64
2020-04-01network: can: introduce a config parser function for bitratesRichard Petri5-8/+49
For now, this function is nearly equivalent to the si_uint64 parser, except for an additional range check as Linux only takes 32-bit values as bitrates. In future, this may also be used to introduce fancier bitrate config formats.
2020-04-01network: DHCPv6 Add support to send MUD URLSusant Sahani8-0/+64
2020-04-01sd-dhcpv6: Add support to set request MUD URLSusant Sahani2-0/+50
2020-04-01man: mention that stdout logging works the same as stderr loggingLennart Poettering1-10/+8
Apparently people wondered about that: https://lists.freedesktop.org/archives/systemd-devel/2020-March/044091.html
2020-04-01sd-bus: sd_bus_call docs improvementsDaan De Meyer1-17/+22
2020-04-01sd-bus: Add sd_bus_get/set_priority docs + fixesDaan De Meyer3-5/+28
2020-03-31sd-bus: Add note about sd_bus_reply_method_return to SD_BUS_METHOD docsDaan De Meyer2-26/+29
2020-03-31sd-bus: Add sd_bus_add_object and callback docsDaan De Meyer3-3/+66
2020-03-31sd-bus: Fix typos in sd_bus_add_object_vtable docsDaan De Meyer1-3/+3
2020-03-31sd-bus: Wrap add_object_vtable docs at 100 columnsDaan De Meyer1-89/+97
2020-03-31*: use _cleanup_close_ with fdopendir() where trivialVito Caputo2-8/+6
Also convert these to use take_fdopendir().
2020-03-31*: use _cleanup_close_ with fdopen() where trivialVito Caputo5-25/+16
Also convert these to use take_fdopen().
2020-03-31*: convert amenable fdopendir() calls to take_fdopendir()Vito Caputo3-6/+6
Some fdopendir() calls remain where safe_close() is manually performed, those could be simplified as well by converting to use the _cleanup_close_ machinery, but makes things less trivial to review so left for a future cleanup.
2020-03-31fileio: add take_fdopendir() variantVito Caputo2-0/+13
fdopendir() wrapper analogous to take_fdopen()
2020-03-31*: convert amenable fdopen calls to take_fdopenVito Caputo12-37/+16
Mechanical change to eliminate some cruft by using the new take_fdopen{_unlocked}() wrappers where trivial.
2020-03-31fileio: introduce take_fdopen{_unlocked}() variantVito Caputo2-0/+28
With the addition of _cleanup_close_ there's a repetitious pattern of assigning -1 to the fd after a successful fdopen to prevent its close on cleanup now that the FILE * owns the fd. This introduces a wrapper that instead takes a pointer to the fd being opened, and always overwrites the fd with -1 on success. A future commit will cleanup all the fdopen call sites to use the wrapper and elide the manual -1 fd assignment.
2020-03-31units: do not pull in home.mount from systemd-homed.serviceLennart Poettering1-1/+1
/home is posibly a remote file system. it makes sense to order homed after it, so that we can properly enumerate users in it, but we probably shouldn't pull it in ourselves, and leave that to users to configure otherwise. Fixes: #15102
2020-03-31home: fix several typosVito Caputo11-35/+35
2020-03-31test: print path to build directory on misconfigurationZbigniew Jędrzejewski-Szmek1-1/+1
This way it's easier to see when a wrong $BUILD_DIR was passed.
2020-03-31units: make systemd-userdbd.{socket,service} installableZbigniew Jędrzejewski-Szmek4-2/+8
It's lightweight and generally useful, so it should be enabled by default. But users might want to disable it for whatever reason, and things should be fine without it, so let's make it installable so it can be disabled if wanted. Fixes #15175.
2020-03-31units: make systemd-homed.service installableZbigniew Jędrzejewski-Szmek4-3/+9
Fixes #15083. Users might want to disable homed if not used to save resources.
2020-03-31units: make systemd-repart.service installableZbigniew Jędrzejewski-Szmek3-3/+7
This essentially adds another layer of configurability: build disable, this, presence of configuration. The default is set to enabled, because the service does nothing w/o config.
2020-03-31user-util: switch order of checks in valid_user_group_name_or_id_full()Lennart Poettering1-2/+2
When we are supposed to accept numeric UIDs formatted as string, then let's check that first, before passing things on to valid_user_group_name_full(), since that might log about, and not the other way round. See: #15201 Follow-up for: 93c23c9297e48e594785e0bb9c51504aae5fbe3e
2020-03-31home: narrow scope of 'size_t n'Vito Caputo1-2/+1
trivial cosmetic cleanup
2020-03-31homectl: fix a typoPiero La Terza1-1/+1
stroage -> storage
2020-03-30network: DHCPv4 - introduce The Manufacturer Usage Description (MUD)Susant Sahani7-0/+68
2020-03-30sd-dhcpv4: introduce The Manufacturer Usage Description (MUD)Susant Sahani2-0/+38
2020-03-30userwork: fix signal worker sends to manager requesting more workersLennart Poettering1-1/+1
That's what you get for changing these signals around, after checking everything works, not before. Bad, Lennart, bad! Fixes: #15085
2020-03-30ci: turn off FuzzBuzzEvgeny Vereshchagin7-67/+5
I don't think anyone uses it.
2020-03-30travis: install ninja with pipEvgeny Vereshchagin1-2/+2
https://mesonbuild.com/Release-notes-for-0-54-0.html#ninja-version-requirement-bumped-to-17 https://github.com/mesonbuild/meson/issues/6867
2020-03-29networkctl: Add support to display DHCP SMTP serversSusant Sahani1-1/+5
2020-03-29sd-network: Add support to emit and receive SMTP server informationSusant Sahani2-0/+7
2020-03-29network: DHCP - add support to emit and receive SMTP server informationSusant Sahani9-15/+182