Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-04-10 | tmpfiles: eat up empty columns | Lennart Poettering | |
2015-04-10 | tmpfiles: substitute % specifiers in arguments for writing files and xattrs | Lennart Poettering | |
2015-04-10 | tmpfiles: warn if we get an argument on lines that don't take any | Lennart Poettering | |
2015-04-10 | tmpfiles: mostly revert 71044f609b829d802e0eb81270e13b4f55d76476 | Lennart Poettering | |
Add a comment why returning a positive error is OK and intended in this case. (It's still a nasty hack to do this though!) | |||
2015-04-10 | device-nodes: minor simplifications | Lennart Poettering | |
2015-04-10 | util: unify how we parse mode_t strings | Lennart Poettering | |
2015-04-10 | util: remove normalize_env_assignment(), it's unused | Lennart Poettering | |
2015-04-10 | shared: fix memleak | Ronny Chevalier | |
path was used for 2 purposes but it was not freed before being reused. | |||
2015-04-10 | util: mark unquote() static, so that new code doesn't use this anymore | Lennart Poettering | |
2015-04-10 | util: fix unicode decoding in unquote_first_word() | Lennart Poettering | |
2015-04-10 | util: when unescaping C escape sequences support C++11 \u and \U unicode ↵ | Lennart Poettering | |
literals We simply recode them in utf8. | |||
2015-04-09 | util: fix a typo in comment | Thomas Hindoe Paaboel Andersen | |
2015-04-09 | terminal/page: drop unneeded DISABLE_WARNING_* | David Herrmann | |
The macros in shared/macro.h have been updated to no longer use fixed variable names. This will silence any shadowing-warnings, so drop the DISABLE_WARNING_* annotations. | |||
2015-04-09 | bus: simplify bus_message_read_strv_extend() | David Herrmann | |
Avoid unbound for(;;) loop and use the established coding-style: while ((r = sd_bus_message_read*(...)) > 0) { } if (r < 0) return r; This is much easier to read and used all over the code base. | |||
2015-04-09 | bus: use free_and_strdup() | David Herrmann | |
Save some LOCs by replacing strdup()+error-handling+free+assign with free_and_strdup(). | |||
2015-04-09 | terminal/idev: fix NULL terminator for bus-property mapping | David Herrmann | |
We require a NULL entry as sentinal in bus_properties_map. Fix this! | |||
2015-04-09 | test-journal-flush: fix memleak | Ronny Chevalier | |
2015-04-09 | util: cunescape - fix memleak in error path | Ronny Chevalier | |
2015-04-09 | util: add shell_maybe_quote() call for preparing a string for shell cmdline ↵ | Lennart Poettering | |
inclusion If necessary the passed string is enclosed in "", and all special characters escapes. This also ports over usage in bus-util.c and job.c to use this, instead of a incorrect local implementation that forgets to properly escape. | |||
2015-04-09 | vconsole: some modernizations, indentation fixes | Lennart Poettering | |
2015-04-09 | tmpfiles: properly return error code from path_set_acl() | Lennart Poettering | |
2015-04-09 | tmpfiles: add file attribute calls to list of glob needing commands | Lennart Poettering | |
2015-04-09 | vconsole: stick to kernel-style function error handling | Lennart Poettering | |
This undoes part of 8931278c8a9ef7b60f6b6963486a9e9febb20a0d. We really should stick to kernel-style "int" return values from functions, and not covnert success into boolean returns. | |||
2015-04-09 | networkd: do not assign the variable twice | Thomas Hindoe Paaboel Andersen | |
2015-04-08 | tmpfiles: rework file attribute code | Lennart Poettering | |
- Stick to one type for the flags field: unsigned. This appears to be what the kernel uses, and there's no point in using something else. - compress the flags array by avoiding sparse entries - extend some error messages to not use abbreviated words - avoid TTOCTTOU issues by invoking fstat() after open() when applying file flags - add explanation why we need to check the file type with fstat(). - don't needlessly abbreviate "attribute" as "attrib", in particually as "chattr" abbreviates it as "attr" rather than "attrib". | |||
2015-04-08 | util: merge change_attr_fd() and chattr_fd() | Lennart Poettering | |
2015-04-08 | fstab-generator: don't continue on OOM | Lennart Poettering | |
2015-04-08 | timesyncd: print an INFO log message when we successfully reached a time server | Lennart Poettering | |
2015-04-08 | man: avoid confusion regarding "time synchronization state" | Lennart Poettering | |
Also, update example in the timedatectl man page to match the actual timedatectl output. | |||
2015-04-08 | systemctl: Use logind for --firmware-setup if possible | Jan Janssen | |
2015-04-08 | Indentation | Zbigniew Jędrzejewski-Szmek | |
2015-04-08 | core/automount: beef up error message | Zbigniew Jędrzejewski-Szmek | |
This should not happen... but when it does more information is nice. | |||
2015-04-08 | resolved: maintain order when writing resolv.conf entries | Lennart Poettering | |
http://lists.freedesktop.org/archives/systemd-devel/2015-March/029850.html | |||
2015-04-08 | util: add minimal OrderedSet type | Lennart Poettering | |
OrderedSet implements a Set-like structure, but maintains insertion ordered. It is hence to Set what OrderedHashmap is for Hashmap. Internally, this is only a wrapper around OrderedHashmap for now, but this could one day be improved and be added to hashmap.c natively. | |||
2015-04-08 | missing.h: Define IFA_F_NOPREFIXROUTE | Alexander Sverdlin | |
Fixes second systemd compilation problem against Linux 3.12 uapi headers. IFA_F_NOPREFIXROUTE is a usual #define appeared in Linux 3.14, so AC_CHECK_DECLS is not necessary. | |||
2015-04-08 | sd-rtnl: properly size attribute array if IFA_FLAGS was missing | Lennart Poettering | |
2015-04-08 | remove duplicated includes | Ronny Chevalier | |
2015-04-08 | timedatectl: trim --help output to 80 chars | Ronny Chevalier | |
2015-04-08 | test-socket-util: add test for in_addr_to_string | Ronny Chevalier | |
2015-04-07 | device: remove unused null check | Thomas Hindoe Paaboel Andersen | |
We dereference the variable right before the null check. We never reach this point with a null value anyway so let's just remove it. | |||
2015-04-07 | logind: drop "interactive" parameter from SetRebootToFirmwareSetup() bus call | Lennart Poettering | |
Newer dbus versions have an "allow interactive authentication" bit in the message header, hence it is not necessary to take a boolean for this explicitly. | |||
2015-04-07 | missing.h: define IFA_FLAGS if it is missing | Lennart Poettering | |
2015-04-07 | test-util: don't mix declarations and code | Thomas Hindoe Paaboel Andersen | |
2015-04-07 | socket: minor modernizations | Lennart Poettering | |
2015-04-07 | logind,systemctl: add reboot to EFI firmware support | Jan Janssen | |
2015-04-07 | timedatectl: avoid specifically referring to NTP | Lennart Poettering | |
systemd-timesyncd not only does NTP, but also manages clock monotonicity using a flags file. In future, it might learn PTP support. Hence don't expose its enablement state as "NTP" but use the more generic term "network time synchronization". After all, for similar reasons systemd-timesyncd is not called systemd-ntpd. | |||
2015-04-07 | path-util: fix more path_is_mount e792e890f fallout | Lennart Poettering | |
2015-04-07 | polkit: rename bus_verify_polkit() to bus_test_polkit() and make it strictly ↵ | Lennart Poettering | |
non-interactive Interactive authorization should only happen asynchronously, hence disallow it in synchronous bus_verify_polkit(), and rename it to bus_test_polkit(). This way even if the bus message header asks for interactive authorization, we'll ask for non-interactive authorization which is actually the desired behaviour if CanSuspend, CanHibernate and friends, which call this function. | |||
2015-04-07 | util: rework cunescape(), improve error handling | Lennart Poettering | |
Change cunescape() to return a normal error code, so that we can distuingish OOM errors from parse errors. This also adds a flags parameter to control whether "relaxed" or normal parsing shall be done. If set no parse failures are generated, and the only reason why cunescape() can fail is OOM. | |||
2015-04-07 | core: fix mount setup to work with non-existing mount points | David Herrmann | |
We must not fail on ENOENT. We properly create the mount-point in mount-setup, so there's really no reason to skip the mount. Make sure we just skip the mount on unexpected failures or if it's already mounted. |