summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* core: Remove explicit Plymouth integrationJasper St. Pierre2015-03-16
| | | | | | | | | | | | | | | | | | | | | Even if plymouth is running, it might have not displayed the splash yet, so we'll see a few lines on fbcon when we should have otherwise had nothing. Plymouth integration was added to systemd in commit 6faa11140bf776cdaeb8d22d01816e6e48296971. That same day, Plymouth got systemd integration [0]. As such, the Plymouth integration has always been obsolete, and was probably only for older Plymouth's. But I can't imagine anybody running a Plymouth from 2011 with a systemd from 2015. Remove the Plymouth/systemd integration, and let Plymouth's code tell systemd to print the details. [0] http://cgit.freedesktop.org/plymouth/commit/?id=537c16422cd49f1beeaab1ad39846a00018faec1 Signed-off-by: Jasper St. Pierre <jstpierre@mecheye.net> Cc: Daniel Drake <dsd@endlessm.com> Cc: Ray Strode <rstrode@redhat.com>
* Revert "hwdb: merge atkbd into platform matches"David Herrmann2015-03-16
| | | | | | | | | This reverts commit ba76ee29bc02879fb42c048132af8889b00220d5. As it turns out, we need to match on driver=atkbd to not load the fixups on any plugged USB devices. That is, whenever you use "name:<name>:dmi:<dmi>" style matches, you better provide a name or you're screwing things up.
* core: don't change removed devices to state "tentative"Martin Pitt2015-03-16
| | | | | | | | | | | | Commit 628c89c introduced the "tentative" device state, which caused devices to go from "plugged" to "tentative" on a remove uevent. This breaks the cleanup of stale mounts (see commit 3b48ce4), as that only applies to "dead" devices. The "tentative" state only really makes sense on adding a device when we don't know where it was coming from (i. e. not from udev). But when we get a device removal from udev we definitively know that it's gone, so change the device state back to "dead" as before 628c89c.
* rules: keyboard - remove "platform" from commentsKay Sievers2015-03-16
|
* hwdb: merge atkbd into platform matchesDavid Herrmann2015-03-16
| | | | | | | | | | | | | | | | Currently, we always run hwdb 'keyboard:name:$attr{name}:$attr{[dmi/id]modalias}' as last step to match keyboards. Therefore, if nothing else matched so far, we still try the device-name+dmi combination. However, we have a special atkbd rule which is only run for atkbd as: hwdb 'keyboard:$attr{[dmi/id]modalias}' This is redundant, as we already pass the same information to hwdb in the last fallback step. This patch converts the hwdb "keyboard:dmi:*" matches to "keyboard:name:*:dmi:*" matches and drops the redundant rule.
* rules: drop redundant matchDavid Herrmann2015-03-16
| | | | | The 60-keyboard rules are already guared by KERNEL!="event*" bail-outs, therefore, KERNELS="input*" is always true. Drop it!
* hwdb: support bluetooth keyboard fixupsDavid Herrmann2015-03-16
| | | | | Drop the restriction not to match on bluetooth devices. They are supported just fine!
* hwdb: convert to generic input-modalias matchesDavid Herrmann2015-03-16
| | | | | | | | | | | | | | | | There is no reason to match on usb-modaliases, if we can use the input-modalias to achieve the same. This commit changes the keyboard-lookups to not be restricted to USB, but pass all modaliases to the hwdb. Furthermore, we convert all usb:* matches to input:* matches, thus getting rid of any ambiguity if multiple usb devices are chained (or a bluetooth device / etc. is on top). Note that legacy keyboard:usb:* matches are still supported, but deprecated. If possible, please use keyboard:input:* matches instead. This is a required step to make other input devices work with 60-keyboard.hwdb. Other bus-types are often chained on usb and we want to avoid any ambiguity here if we incorrectly match on a USB hub.
* po: update Polish translationPiotr Drąg2015-03-15
| | | | https://bugs.freedesktop.org/show_bug.cgi?id=89582
* man: standard-conf: change directory reference to wildcardAlison Chaiken2015-03-15
|
* vconsole-setup: check error of child processLucas De Marchi2015-03-15
| | | | | | | | | | | | | | | | | | | | | | | If we don't check the error of the child process, systemd-vconsole-setup would exit with 0 even if it could not really setup the console. For a simple test, move loadkeys elsewhere and execute systemd-vconsole-setup: [root@localhost ~]# strace -f -e execve /usr/lib/systemd/systemd-vconsole-setup execve("/usr/lib/systemd/systemd-vconsole-setup", ["/usr/lib/systemd/systemd-vconsol"...], [/* 15 vars */]) = 0 Process 171 attached [pid 171] execve("/usr/bin/loadkeys", ["/usr/bin/loadkeys", "-q", "-C", "/dev/tty0", "br-abnt2"], [/* 15 vars */]) = -1 ENOENT (No such file or directory) [pid 171] +++ exited with 1 +++ --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=171, si_uid=0, si_status=1, si_utime=0, si_stime=0} --- +++ exited with 0 +++ Note that loadkeys returned 1 while systemd-vconsole-setup return 0. Since the font and keyboard setup are already serialized, refactor the code a little bit so the functions do the wait by themselves. One change in behavior in this patch is that we don't return early, but we do try to setup the keyboard even if the font load failed.
* network: add UseNTP DHCP optionMichael Marineau2015-03-15
| | | | | Despite having the internal logic in place to enable/disable using NTP servers provided by DHCP the network config didn't expose the option.
* Add (void) where we don't care about return valueZbigniew Jędrzejewski-Szmek2015-03-15
|
* journal-gatewayd: factor out opening of temp fileZbigniew Jędrzejewski-Szmek2015-03-15
| | | | Also use our own mkostemp wrapper, which tries to use O_TMPFILE.
* logind: check return value of session_releaseZbigniew Jędrzejewski-Szmek2015-03-15
| | | | | | It allocates memory, so it can fail. CID #1237527.
* util: check asprintf return valueZbigniew Jędrzejewski-Szmek2015-03-15
| | | | CID #1237546.
* core: remove useless debug messageZbigniew Jędrzejewski-Szmek2015-03-15
| | | | | | | | | | Mar 13 19:48:28 adam.happyassassin.net systemd[1]: Collecting (null) Mar 13 19:48:28 adam.happyassassin.net systemd[1]: Collecting (null) Mar 13 19:48:28 adam.happyassassin.net systemd[1]: Collecting (null) Mar 13 19:48:28 adam.happyassassin.net systemd[1]: Collecting (null) Mar 13 19:48:28 adam.happyassassin.net systemd[1]: Collecting (null) Mar 13 19:48:28 adam.happyassassin.net systemd[1]: Collecting (null) Mar 13 19:48:28 adam.happyassassin.net systemd[1]: Collecting (null)
* libudev-monitor: use initializationZbigniew Jędrzejewski-Szmek2015-03-15
|
* timesyncd: enable timesyncd in virtual machinesKay Sievers2015-03-15
| | | | | | | | | | | | | | | | | On Fri, Mar 13, 2015 at 8:25 PM, Michael Marineau <michael.marineau@coreos.com> wrote: > Currently systemd-timesyncd.service includes > ConditionVirtualization=no, disabling it in both containers and > virtual machines. Each VM platform tends to deal with or ignore the > time problem in their own special ways, KVM/QEMU has the kernel time > source kvm-clock, Xen has had different schemes over the years, VMware > expects a userspace daemon sync the clock, and other platforms are > content to drift with the wind as far as I can tell. > > I don't know of a robust way to know if a platform needs a little > extra help from userspace to keep the clock sane or not but it seems > generally safer to try than to risk drifting. Does anyone know of a > reason to leave timesyncd off by default? Otherwise switching to > ConditionVirtualization=!container should be reasonable.
* journald: add syslog fields for audit messagesZbigniew Jędrzejewski-Szmek2015-03-14
| | | | | | | Audit messages would be displayed as "unknown[1]". Also specify AUTH as facility... This seems to be the closest match (/* security/authorization messages */).
* sysctl: tweak debug messageZbigniew Jędrzejewski-Szmek2015-03-14
|
* cryptsetup-generator: remove warning about crypttab access modeZbigniew Jędrzejewski-Szmek2015-03-14
| | | | | | This file contains no privileged data — just names of devices to decrypt and files containing keys. On a running system most of this can be inferred from the device tree anyway.
* udev: downgrade "has devpath" and "filled with db file" messagesZbigniew Jędrzejewski-Szmek2015-03-14
| | | | | | Udev debug messages have to be significantly overhauled... For now just downgrade those two. They are responsible for approximately 25% of debug output during boot and are rather useless.
* gpt-auto-generator: prefix messages with device nameZbigniew Jędrzejewski-Szmek2015-03-14
|
* core: do not use quotes around virt and archZbigniew Jędrzejewski-Szmek2015-03-14
| | | | | Quotes are useful when the string can contain spaces or be otherwise confusing. Not possible with those two.
* sysv-generator: initialize LookupPaths just onceZbigniew Jędrzejewski-Szmek2015-03-14
| | | | | | | | With debugging on, sysv-generator would print the full set of lookup paths for *every* sysv script. While at it, pass LookupPaths as a pointer in sysv-generator, and constify it everywhere.
* tmpfiles: remove redundant debug messageZbigniew Jędrzejewski-Szmek2015-03-14
| | | | | Mar 13 19:48:30 adam.happyassassin.net systemd-tmpfiles[970]: "/var/lib/machines" has right mode 40700 Mar 13 19:48:30 adam.happyassassin.net systemd-tmpfiles[970]: /var/lib/machines created successfully.
* util: remove redundant debug messageZbigniew Jędrzejewski-Szmek2015-03-14
| | | | | | | mar 14 20:05:34 fedora22 systemd[4058]: /usr/lib/systemd/system-generators/kdump-dep-generator.sh will be executed. mar 14 20:05:34 fedora22 systemd[4058]: Spawned /usr/lib/systemd/system-generators/kdump-dep-generator.sh as 4059. The second line already says everything.
* units: there is no systemd-udev-hwdb-update.serviceZbigniew Jędrzejewski-Szmek2015-03-14
|
* core: remove left-over debug messageZbigniew Jędrzejewski-Szmek2015-03-14
|
* service: don't add After= dependencies on .busname units if kdbus support is ↵Michael Biebl2015-03-14
| | | | disabled
* udev-ctrl: fix strict aliasing issuesShawn Landden2015-03-14
| | | | | | | it is ironic that "The only purpose of this structure is to cast the structure pointer passed in addr in order to avoid compiler warnings. See EXAMPLE below." from bind(2)
* sd-dhcp-client: fix strict aliasing issueShawn Landden2015-03-14
|
* man: add sd_event_{run,wait,prepare,dispatch,loop}Zbigniew Jędrzejewski-Szmek2015-03-14
|
* sd-event: sd_event_run - only return 0 on timeoutTom Gundersen2015-03-14
| | | | sd_event_dispatch() returns 0 on FINISH, so let's eat that up.
* sd-event: rename PASSIVE/PREPARED to INITIAL/ARMEDTom Gundersen2015-03-14
|
* selinux: fix SEGV during switch-root if SELinux policy loadedWill Woods2015-03-13
| | | | | | | | | | | | | | | | | | If you've got SELinux policy loaded, label_hnd is your labeling handle. When systemd is shutting down, we free that handle via mac_selinux_finish(). But: switch_root() calls mkdir_p_label(), which tries to look up a label using that freed handle, and so we get a bunch of garbage and eventually SEGV in libselinux. (This doesn't happen in the switch-root from initramfs to real root because there's no SELinux policy loaded in initramfs, so label_hnd is NULL and we never attempt any lookups.) So: make sure that mac_selinux_finish() actually sets label_hnd to NULL, so nobody tries to use it after it becomes invalid. https://bugzilla.redhat.com/show_bug.cgi?id=1185604
* man: fix indentation of copyright headersZbigniew Jędrzejewski-Szmek2015-03-13
|
* man: no paren in linkZbigniew Jędrzejewski-Szmek2015-03-13
|
* man: fix name of systemd.journal-fields(7)Zbigniew Jędrzejewski-Szmek2015-03-13
|
* man: fix link to strerror(3)Zbigniew Jędrzejewski-Szmek2015-03-13
|
* man: s/sd_bus_message_get_seqno/sd_bus_message_get_seqnum/Zbigniew Jędrzejewski-Szmek2015-03-13
|
* man: fix name of systemd.resource-control(5)Zbigniew Jędrzejewski-Szmek2015-03-13
|
* man: link to fd.o for dbus stuffZbigniew Jędrzejewski-Szmek2015-03-13
|
* man: link to freebsd.org for inetd(8)Zbigniew Jędrzejewski-Szmek2015-03-13
|
* man: fix a bunch of linksZbigniew Jędrzejewski-Szmek2015-03-13
| | | | All hail linkchecker!
* sd-daemon: simplify sd_pid_notify_with_fdsZbigniew Jędrzejewski-Szmek2015-03-13
| | | | | | | | Coverity was complaining that CMSG_NXTHDR is used without checking the return value. In this case it cannot fail, but it is a good excuse to simplify the function a bit. CID #1261726.
* udev: properly calculate size of remaining dataZbigniew Jędrzejewski-Szmek2015-03-13
| | | | | | | The data comes from the kernel, so chances of it being garbled are low, but for correctness' sake, add the check. CID #996458.
* test-dhcp-option: conform to usual coding styleZbigniew Jędrzejewski-Szmek2015-03-13
|
* test-dhcp-option: add assert to check index is nonnegativeZbigniew Jędrzejewski-Szmek2015-03-13
| | | | CID #1237623.