Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-03-09 | Merge pull request #2755 from keszybz/more-tests | Martin Pitt | |
Enable more tests by default, and even more with `--enable-tests=unsafe` | |||
2016-03-07 | Merge pull request #2768 from benjarobin/fix-2718 | Daniel Mack | |
systemctl: Replace check_one_unit() by get_state_one_unit() | |||
2016-03-06 | Merge pull request #2803 from 0xAX/lacess-tree-wide | Ronny Chevalier | |
firstboot: use laccess macro instead of facessat() | |||
2016-03-06 | firstboot: use laccess macro instead of facessat() | Alexander Kuleshov | |
2016-03-05 | README: bump kernel version to 3.12 | Zbigniew Jędrzejewski-Szmek | |
It is required for %P is sysctl kernel.core_pattern. Fixes #2800. | |||
2016-03-05 | Merge pull request #2791 from 0xAX/clear-flag-macro | Zbigniew Jędrzejewski-Szmek | |
tree-wide: use SET_FLAG() macro to make code more clear | |||
2016-03-05 | Merge pull request #2795 from jhol/replace-irreversibly-on-failure | Zbigniew Jędrzejewski-Szmek | |
core/failure-action: set job-modes to replace-irreversibly | |||
2016-03-05 | Merge pull request #2801 from ronnychevalier/rc/systemctl_error_msg | Zbigniew Jędrzejewski-Szmek | |
systemctl: improve error message when starting a unit failed | |||
2016-03-05 | tree-wide: use SET_FLAG() macro to make code more clear | Alexander Kuleshov | |
2016-03-05 | systemctl: improve error message when starting a unit failed | Ronny Chevalier | |
Fixes #2798 | |||
2016-03-04 | test-compress-benchmark: skip loop iteration if size is 0 | Zbigniew Jędrzejewski-Szmek | |
Otherwise we would hit an assert in the compression code. | |||
2016-03-04 | test-selinux: use yes_no() and strnull() | Zbigniew Jędrzejewski-Szmek | |
2016-03-04 | networkctl: avoid reading past end of input buffer | Zbigniew Jędrzejewski-Szmek | |
name is IFNAMSIZ bytes, but we would copy sizeof(info->name) bytes, which is IFNAMSIZ + 1. In effect we would go outside of the source buffer and possibly leave a non-null terminated string in info->name. CID #1351754. | |||
2016-03-04 | networkctl: use ETHER_ADDR_NULL in one more place | Zbigniew Jędrzejewski-Szmek | |
2016-03-04 | lldp: fix memleak | Zbigniew Jędrzejewski-Szmek | |
in_addr_to_string returned 0, which was treated as error by the calling code, which expects 1 on success. CID #1351757, #1351758. | |||
2016-03-04 | test-journal-enum: enable by default | Zbigniew Jędrzejewski-Szmek | |
It will get at most ten values, I don't know why we wouldn't always run this test. | |||
2016-03-04 | test-libudev: disable monitor mode by default and add to automatic tests | Zbigniew Jędrzejewski-Szmek | |
2016-03-04 | test-libudev: modernization | Zbigniew Jędrzejewski-Szmek | |
2016-03-04 | build-sys: ignore Python 2 bytecode files | Zbigniew Jędrzejewski-Szmek | |
We ignored __pycache__ which works for Python 3, but the rule for Python 2 got lost somehow. | |||
2016-03-04 | Enable test-ipcrm, test-hostname in unsafe tests | Zbigniew Jędrzejewski-Szmek | |
2016-03-04 | Enable test-daemon, test-log, test-watchdog by default | Zbigniew Jędrzejewski-Szmek | |
Those should be safe to run, resulting in some messages in logs. | |||
2016-03-04 | shared/acpi-fpdt: use ENODATA for missing data and skip test | Zbigniew Jędrzejewski-Szmek | |
This data is simply missing on non-UEFI systems, and it is useful to distinguish that from corrupted data. | |||
2016-03-04 | Rename test-boot-timestamp to test-boot-timestamps and enable by default | Zbigniew Jędrzejewski-Szmek | |
The source file name and the binary name were mismatched. Rename binary to match. Make the test exit with TEST_SKIP if the data is missing or we have no permissions. Otherwise, the data will be printed, which should be safe to enable by default. | |||
2016-03-04 | Move test-loopback to normal tests | Zbigniew Jędrzejewski-Szmek | |
In the normal case lo should be already configured and this should be a noop, even when run under root. | |||
2016-03-04 | core/failure-action: Set job-modes to replace-irreversibly | Joel Holdsworth | |
Up until now, the failure action has launched reboot.target and poweroff.target with a less aggressive job mode than "systemctl reboot" does. This has meant that the reboot and power- off operations can stall if there are any conflicts with the target during rebooting. | |||
2016-03-03 | Merge pull request #2790 from ronnychevalier/rc/systemctl_missing_oom_check | Zbigniew Jędrzejewski-Szmek | |
systemctl: add missing OOM check | |||
2016-03-03 | systemctl: add missing OOM check | Ronny Chevalier | |
2016-03-03 | Merge pull request #2781 from keszybz/selinux-and-warnings | Lennart Poettering | |
Selinux loading fix and warning cleanups | |||
2016-03-03 | Merge pull request #2787 from ↵ | Zbigniew Jędrzejewski-Szmek | |
ronnychevalier/rc/systemctl_edit_rm_empty_dropin_dirs systemctl: rm empty dropin dirs after cancelled edit | |||
2016-03-02 | systemctl: rm empty dropin dirs after cancelled edit | Ronny Chevalier | |
Fixes #2734 | |||
2016-03-02 | Redefine 32bit time_t format to signed | Zbigniew Jędrzejewski-Szmek | |
It seems that it is signed both on i386 and arm. Avoids a stupid gcc warning on arm: src/udev/udevadm-monitor.c: In function ‘print_device’: src/udev/udevadm-monitor.c:44:16: warning: format ‘%u’ expects argument of type ‘unsigned int’, but argument 3 has type ‘__time_t {aka long int}’ [-Wformat=] printf("%-6s[%"PRI_TIME".%06ld] %-8s %s (%s)\n", ^ | |||
2016-03-02 | test-sizeof: add a helper which prints variable sizes and signedness | Zbigniew Jędrzejewski-Szmek | |
This helps to understand misleading gcc warnings about type mismatches. | |||
2016-03-02 | test-selinux: add some simple tests which call functions and print the ↵ | Zbigniew Jędrzejewski-Szmek | |
results and timings | |||
2016-03-02 | selinux: use raw variants of security_compute_create and setfscreatecon | Zbigniew Jędrzejewski-Szmek | |
As suggested by Evgeny Vereshchagin as a follow up for https://github.com/systemd/systemd/pull/2781#issuecomment-191043402. | |||
2016-03-02 | Merge pull request #2779 from 0xAX/openat-opath-excess-flags | Daniel Mack | |
tree-wide: no need to pass excess flags to open()/openat() if O_PATH … | |||
2016-03-02 | Merge pull request #2782 from AOSC-Dev/master | Daniel Mack | |
po/zh_CN: attempt to refresh zh_CN translation | |||
2016-03-01 | po/zh_CN: attempt to refresh zh_CN translation | Mingcong Bai | |
2016-03-01 | selinux: always try to load the full selinux db | Zbigniew Jędrzejewski-Szmek | |
https://github.com/systemd/systemd/pull/2508#issuecomment-190901170 Maybe fixes https://bugzilla.redhat.com/show_bug.cgi?id=1308771. | |||
2016-03-01 | Merge pull request #2754 from eworm-de/ask-password | Zbigniew Jędrzejewski-Szmek | |
ask-password: do no print password when storing in keyring | |||
2016-03-01 | Merge pull request #2777 from martinpitt/keymap | Martin Pitt | |
keymap fixes | |||
2016-03-02 | tree-wide: no need to pass excess flags to open()/openat() if O_PATH is passed | Alexander Kuleshov | |
As described in the documentation: When O_PATH is specified in flags, flag bits other than O_CLOEXEC, O_DIRECTORY, and O_NOFOLLOW are ignored. So, we can remove unnecessary flags in a case when O_PATH is passed to the open() or openat(). | |||
2016-03-01 | ask-password: add option --no-output to not print password to stdout | Christian Hesse | |
systemd-ask-password can store passwords in kernel keyring. However it uses to print the passwords to standard output nevertheless. Depending on where systemd-ask-password is called passwords may end on display or in log, leaking sensitive information. This allows to make systemd-ask-password quiet, effectively disabling printing passwords to standard output. | |||
2016-03-01 | keymap: Some HP refactoring, add Probook 440 G3 keys | Martin Pitt | |
Apparently the vendor string for newer models now uses "svnHP" instead of "svnHewlett-Packard", so add this alternative match to the global HP map. Generalize matches for micmute key on ProBook 4xx. Silence two hardwired keys on the ProBook 440 G3 that should not produce evdev events. Thanks to Hermann Kraus for those! (See PR #2679) | |||
2016-03-01 | keymap: Add HP ZBook | Martin Pitt | |
https://launchpad.net/bugs/1535219 | |||
2016-03-01 | Merge pull request #2773 from eliasp/type-warnings | Daniel Mack | |
Use `PRIu64` to print `uint64_t` in log msgs | |||
2016-02-29 | Merge pull request #2702 from poettering/resolved-iterate-fix | Zbigniew Jędrzejewski-Szmek | |
resolved iteration fix | |||
2016-02-29 | Merge pull request #2767 from benjarobin/fix-warn | Zbigniew Jędrzejewski-Szmek | |
systemctl: Fix warn: action_to_runlevel() is not used | |||
2016-02-29 | Use `PRIu64` to print `uint64_t` in log msgs | Elias Probst | |
2016-02-29 | Merge pull request #2771 from 0xAX/core-kernel-timestamp-cleanup | Lennart Poettering | |
core: use DUAL_TIMESTAMP_NULL to reset kernel_timestamp | |||
2016-02-29 | Merge pull request #2769 from martinpitt/adjtime | Lennart Poettering | |
Fixes for adjtime parsing |