summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-09-13udev: use get_proc_cmdline_key instead of FOREACH_WORD_QUOTEDZbigniew Jędrzejewski-Szmek
2016-09-13moreLuke Shumaker
2016-09-13moreLuke Shumaker
2016-09-13moreLuke Shumaker
2016-09-13Makefile.am: add missing grp MakefilesLuke Shumaker
2016-09-13I'm having issues with these directories when switching branches.Luke Shumaker
So create them to always be there.
2016-09-13whoops, don't create a file named 'all'Luke Shumaker
2016-09-13tools/notsd-move: don't require putting something in each fileLuke Shumaker
2016-09-13man: "disabled on" does not sound rightZbigniew Jędrzejewski-Szmek
2016-09-13work on Makefile.amLuke Shumaker
2016-09-13fileio: simplify mkostemp_safe() (#4090)Topi Miettinen
According to its manual page, flags given to mkostemp(3) shouldn't include O_RDWR, O_CREAT or O_EXCL flags as these are always included. Beyond those, the only flag that all callers (except a few tests where it probably doesn't matter) use is O_CLOEXEC, so set that unconditionally.
2016-09-13Relicense hwdb/parse_hwdb.py as MIT (#4129)Zbigniew Jędrzejewski-Szmek
This parser will also be used in libinput, which uses the MIT license, so relicense this file to the more permissive license to make bidirectional code flow easier. parse_hwdb.py is only useful during building of the project, and is not part of the installation, so effectively both licenses are very similar. In particular, the licensing of binary packages produced by systemd is not influenced in any way, because the MIT licensed part is not installed.
2016-09-13tools/: pull changes from masterLuke Shumaker
2016-09-12hwdb: add Lenovo X1 Tablet pointing stick speed fix (#4128)dwassenberg
Like many other recent thinkpads the factory default pointingstick sensitivity on these devices is quite low, making the pointingstick very slow in moving the cursor. This extends the existing hwdb rules for tweaking the sensitivity to also apply to the X1 Tablet models. Signed-off-by: Dennis Wassenberg <dennis.wassenberg@secunet.com>
2016-09-11moreLuke Shumaker
2016-09-11fixLuke Shumaker
2016-09-11tools/notsd-move: better loggingLuke Shumaker
2016-09-10Makefile.am: moreLuke Shumaker
2016-09-10split tmpfiles.d/systemd.conf.m4Luke Shumaker
2016-09-10tools/notsd-move: clean up .tmp.logLuke Shumaker
2016-09-10fixLuke Shumaker
2016-09-10clean up tools/Luke Shumaker
2016-09-10sync other tools from masterLuke Shumaker
2016-09-10moreLuke Shumaker
2016-09-10fixLuke Shumaker
2016-09-10moreLuke Shumaker
2016-09-10moreLuke Shumaker
2016-09-10moreLuke Shumaker
2016-09-10moreLuke Shumaker
2016-09-10split the system-preset fileLuke Shumaker
2016-09-10moreLuke Shumaker
2016-09-10split tmpfiles.d/tmp.confLuke Shumaker
2016-09-10moreLuke Shumaker
2016-09-10I want tmpfiles m4 changes to trigger a conflictLuke Shumaker
2016-09-10moreLuke Shumaker
2016-09-10moreLuke Shumaker
2016-09-10systemd-shutdownLuke Shumaker
2016-09-10moreLuke Shumaker
2016-09-10shared/install: fix set-default with empty root (#4118)Zbigniew Jędrzejewski-Szmek
https://bugzilla.redhat.com/show_bug.cgi?id=1374371 When root was empty or equal to "/", chroot_symlinks_same was called with root==NULL, and strjoina returned "", so the code thought both paths are equal even if they were not. Fix that by always providing a non-null first argument to strjoina.
2016-09-10test-fs-util: also empty TEMP and TMP env vars (#4121)Marc-Antoine Perennou
A follow-up for #3818 (992e8f2).
2016-09-10Merge pull request #4119 from keszybz/drop-more-kdbusEvgeny Vereshchagin
Drop more kdbus functionality
2016-09-10service: fixup ExecStop for socket-activated shutdown (#4120)Kyle Russell
Previous fix didn't consider handling multiple ExecStop commands.
2016-09-09shared: recognize DNS names with more than one trailing dot as invalid (#4111)Martin Pitt
One trailing dot is valid, but more than one isn't. This also fixes glibc's posix/tst-getaddrinfo5 test. Fixes #3978.
2016-09-09unit: sent change signal before removing the unit if necessary (#4106)Michael Olbrich
If the unit is in the dbus queue when it is removed then the last change signal is never sent. Fix this by checking the dbus queue and explicitly send the change signal before sending the remove signal.
2016-09-09pid1: drop kdbus_fd and all associated logicZbigniew Jędrzejewski-Szmek
2016-09-09man: drop kdbus descriptions from sd_b_negotiate_fds(3)Zbigniew Jędrzejewski-Szmek
2016-09-09build-sys: drop last reference to --have-kdbusZbigniew Jędrzejewski-Szmek
2016-09-09bash-completion: systemctl: do not pass masked or not-found units to filterYu Watanabe
Also, add new function __filter_units_by_properties() for filtering units by multiple properties, and make __get_startable_units() use it. fixes #4114
2016-09-09service: Continue shutdown on socket activated unit on termination (#4108)Kyle Russell
ENOTCONN may be a legitimate return code if the endpoint disappeared, but the service should still attempt to shutdown cleanly.
2016-09-08man: add missing <constant> tag (#4109)Lucas Werkmeister