summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-07-12build-sys: add a number of missing header files to EXTRA_DISTLennart Poettering
2011-07-12build-sys: drop AM_GNU_GETTEXT as it fights with IT_PROG_INTLTOOLKay Sievers
<mbiebl> kay, mezcalero: https://bugzilla.gnome.org/show_bug.cgi?id=627789 <mezcalero> so we can drop that entirely? <mezcalero> kay: if you drop those two lines, does it improve things for you? <mbiebl> kay: but ./configure should work now <mbiebl> resp. autogen.sh <kay> mezcalero, mbiebl: autogen.sh seems a lot better without the two lines <kay> mezcalero: works without the 'touch' thing <mezcalero> kay: ok, commit please
2011-07-12units: add units for boot.local/halt.local on SUSE distributions.Frederic Crozat
2011-07-11shutdown: coding style fixesLennart Poettering
2011-07-11Merge remote-tracking branch 'harald/master'Lennart Poettering
2011-07-11logind: Fix compilation without ACLZbigniew Jędrzejewski-Szmek
Compilation fails if sys/acl.h is not available. The configure script already tests for sys/acl.h presence, but the result was so far unused. To compile without acl, stub implementations of the acl functions are used.
2011-07-11man: un-reverse IgnoreOnSnapshot descriptionZbigniew Jędrzejewski-Szmek
I think that snapshots & devices are actually _not_ captured in snapshots.
2011-07-11update TODOLennart Poettering
2011-07-11build-sys: Add i18n support through intltoolBastien Nocera
And put the PolicyKit policy files up for translation.
2011-07-11clarify separate-/usr messageKay Sievers
Everything should be fine if /usr is mounted from initramfs.
2011-07-09loginctl: add missing header fileLennart Poettering
2011-07-08systemctl: fix --help syntax for variablesLennart Poettering
2011-07-08logind: don't confuse 'shared' with a session of its ownLennart Poettering
2011-07-08logind: fix introspection typoLennart Poettering
2011-07-08acl: two tag matching is not going to be available in libudevLennart Poettering
2011-07-08loginctl: add various introspection functionsLennart Poettering
2011-07-08seat: only mark main input device for seat assignmentsLennart Poettering
2011-07-07systemctl: hide all information on --kill-mode= since it is mostly uselessLennart Poettering
2011-07-07systemctl: use cached tty value where possibleLennart Poettering
2011-07-07systemctl: cache tty value before we open the pagerLennart Poettering
2011-07-07loginctl: add basic implementation of loginctl for introspecting controlling ↵Lennart Poettering
sessions/users/seats
2011-07-07cgls: add pager support to systemd-cglsLennart Poettering
2011-07-07path,unit: support globbing in conditions and path unitsLennart Poettering
2011-07-07update TODOLennart Poettering
2011-07-06manager: merge serialization and desrialization counter into one, and ↵Lennart Poettering
increase it when reexecuting Instead of having individual counters n_serializing and n_deserializing have a single one n_reloading, which should be sufficient. Set n_reloading when we are about to go down for reexecution to avoid cgroup trimming when we free the units for reexecution.
2011-07-06cgroup: don't trim a cgroup we create, we might just take it over from ↵Lennart Poettering
somebody else
2011-07-05udev: tag virtio serial ports with systemd by defaultLennart Poettering
2011-07-05update TODOLennart Poettering
2011-07-05udev: improve udev rule a bitLennart Poettering
2011-07-05service: 'pidfile:' in SysV chkconfig header implies a real daemonMichal Schmidt
The presence of the chkconfig "pidfile:" header in the initscript is an excellent indication that it's not a oneshot script (like iptables), but a real daemon (like httpd).
2011-07-05udev: pull in printer.target from all kinds of printersLennart Poettering
2011-07-05util: explicitly turn of O_CLOEXEC for stdin/stdout/stderrLennart Poettering
2011-07-05add a few O_CLOEXEC where missingLennart Poettering
2011-07-05logind: write rules files atomicallyLennart Poettering
2011-07-05update todoLennart Poettering
2011-07-04password-agent: actually really don't access unallocated memoryLennart Poettering
Fix for 9726f9ff11fa7b94dceed2972cd2453a08b9ee6a
2011-07-04password-agent: make sure not to access unallocated memoryLennart Poettering
Tracked down by Frederic Crozat
2011-07-04shutdown: pivot_root to a tmpfs directory to properly umount rootHarald Hoyer
check for /run/initramfs/shutdown mount bind all needed dirs to /run/initramfs pivot_root to /run/initramfs execute /run/initramfs/shutdown
2011-07-04umount: log failed umounts only once at the endHarald Hoyer
2011-07-04umount: umount, until all umounts failedHarald Hoyer
2011-07-04umount: log_info about what we unmountedHarald Hoyer
2011-07-03systemadm: report GLib.Error only to stderrMichal Schmidt
When a GLib.Error happens, it is likely that showing a message box would fail too. https://bugzilla.redhat.com/show_bug.cgi?id=716663
2011-07-03shutdown: print the standard wall message even when the user provided oneMichal Schmidt
Print the user-provided wall message in addition to the standard one, not instead of it. Related to: https://bugzilla.redhat.com/show_bug.cgi?id=624149
2011-07-03shutdown: respect the dry run option '-k'Michal Schmidt
Don't do the actual power-off/reboot when '-k' is passed to shutdown. Related to: https://bugzilla.redhat.com/show_bug.cgi?id=624149
2011-07-03shutdown: accept minutes argument without '+'Michal Schmidt
Both SysVinit's and upstart's shutdown commands accept the number of minutes with or without the plus sign. 'shutdown -h 1' works in RHEL 5, Fedora 14, Debian 6. Let's be compatible. https://bugzilla.redhat.com/show_bug.cgi?id=708886
2011-07-02manager: consider the active job when mergingMichal Schmidt
In some cases systemd forgets to start enabled services, e.g. in this scenario: 1. The job "sendmail.service/start" is installed. 2. Before systemd proceeds with this job, a process requests a reload of sendmail. The job "sendmail.service/reload" is enqueued. 3. The original job is silently discarded. The service is not started. The reload job proceeds by doing nothing. The fix is to allow merging transaction jobs with the active job. With the fix the resulting merged job "sendmail.service/reload-or-start" is installed and the service works as expected. https://bugzilla.redhat.com/show_bug.cgi?id=633774
2011-07-02tmpfiles: don't exit with an error code if we cannot access all filesLennart Poettering
This is just to avoid confusion if people use stuff like FUSE file systems or SELinux which might disallow access to files even if tmpfiles is running as root. We still log away if we cannot access a file, but we do not return a failure exit code in the end.
2011-07-02units: enable dev-hugepages.automount and dev-mqueue.automount only when ↵Lennart Poettering
enabled in kernel
2011-07-02umount: ignore missing /proc/swapsMichael Olbrich
/proc/swaps does not exist when swap is disabled in the kernel. Just report an empty list of mountpoints to unmount in this case.
2011-07-02configure: Add --enable-plymouth optionHenry Gebhardt
As in the bug[1] it would be nice to configure plymouth support independently of the distro. This patch adds a "--enable-plymouth" and "--disable-plymouth" option to the configure script to overwrite the distro specific default. [1] https://bugs.freedesktop.org/show_bug.cgi?id=38460