Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-06-24 | logind: remove a session when its cgroup is gone | Lennart Poettering | |
2011-06-24 | logind: fix generation of bus arrays | Lennart Poettering | |
2011-06-24 | logind: make sure we hand out write fd, and keep read fd for session end ↵ | Lennart Poettering | |
detection | |||
2011-06-24 | logind: various clean-ups | Lennart Poettering | |
2011-06-24 | logind: hook up PAM module with logind | Lennart Poettering | |
2011-06-21 | logind: make idle hint logic work | Lennart Poettering | |
2011-06-21 | logind: send out PropertyChanged signals where appropriate | Lennart Poettering | |
2011-06-21 | logind: send dbus signals when sessions/users/seats come and go | Lennart Poettering | |
2011-06-21 | logind: implement ListXXX bus methods | Lennart Poettering | |
2011-06-21 | logind: implement more dbus functionality | Lennart Poettering | |
2011-06-21 | logind: implement idle hint logic | Lennart Poettering | |
2011-06-21 | dbus: add dbus introspection extraction | Lennart Poettering | |
2011-06-21 | timedated: rename a few things for clarification | Lennart Poettering | |
2011-06-21 | timedated: sync clock down to RTC where necessary | Lennart Poettering | |
2011-06-21 | mechanisms: add mechanisms to change system locale and clock | Lennart Poettering | |
2011-06-21 | util: make a couple of files we write atomic | Lennart Poettering | |
2011-06-21 | service: check whether sysv scripts where changed | Lennart Poettering | |
2011-06-21 | dbus: introduce UnsetAndSetEnvironment() | Lennart Poettering | |
2011-06-21 | util: return errno in close_nointr() | Lennart Poettering | |
2011-06-21 | logind: implement D-Bus properties | Lennart Poettering | |
2011-06-21 | dbus: add api for append gid/uid properties | Lennart Poettering | |
2011-06-21 | udev: simplify udev rules a bit | Lennart Poettering | |
2011-06-21 | logind: unlink state files when stopping | Lennart Poettering | |
2011-06-21 | logind: implement GC | Lennart Poettering | |
2011-06-21 | util: add fopen_temporary() | Lennart Poettering | |
2011-06-21 | logind: implement ACL management | Lennart Poettering | |
2011-06-21 | logind: split up logind.h | Lennart Poettering | |
2011-06-21 | logind: first version that compiles fine | Lennart Poettering | |
2011-06-21 | util: move string enum mapping to the end | Lennart Poettering | |
2011-06-21 | util: add pipe_eof() | Lennart Poettering | |
2011-06-21 | english: s/_per_/_by_/ | Lennart Poettering | |
2011-06-21 | util: introduce dirent_is_file() | Lennart Poettering | |
2011-06-21 | hostnamed: split dbus initialization into a separate function | Lennart Poettering | |
2011-06-21 | dbus: make bus_flags_to_events() and friends generally useful | Lennart Poettering | |
2011-06-20 | manager: include full systemctl status command line in error message | Lennart Poettering | |
2011-06-20 | systemctl: Add SYSTEMD_PAGER for setting the pager to use in systemctl | Ville Skyttä | |
2011-06-20 | bash: Add host, privileged, and no-pager bash option completions. | Ville Skyttä | |
2011-06-20 | sd-daemon: Add sd_is_special for special file descriptors | William Douglas | |
With the addition of ListenSpecial as a socket option we need the the usual sd_is_ functions for special files. This patch does that. | |||
2011-06-20 | main: Fix a typo emergency shall->emergency shell | Michal Vyskocil | |
2011-06-15 | pam-module: add debug= parameter | Michal Schmidt | |
It is customary that pam modules do not log debugging information by default. Usually they offer a 'debug' option. Add a boolean debug= option to pam_systemd.so. This will solve bug https://bugzilla.redhat.com/show_bug.cgi?id=705427 Commit 53d5582fa006b0eb528f5dc3f4ba978abd8ac5a3 was not sufficient to fix it, because in Fedora rsyslog is configured to write even LOG_DEBUG messages to /var/log/secure by default. | |||
2011-06-15 | systemctl: plug a leak upon create_symlink mismatch | Jim Meyering | |
2011-06-15 | systemctl: enable chkconfig support in systemctl for ALTLinux | Alexey Shabalin | |
2011-06-15 | execute: fix function prototype | Lennart Poettering | |
2011-06-15 | dbus: fix name of capability property | Lennart Poettering | |
2011-06-14 | systemctl: fix a FILE* leak | Michal Schmidt | |
In practice it does not really matter, but let's be nice and close the file. | |||
2011-06-14 | systemctl: fix 'is-enabled' for native units under /lib | Michal Schmidt | |
The units always showed up as enabled. The config file has to be parsed before we can check what's in the [Install] section. https://bugzilla.redhat.com/show_bug.cgi?id=699027 | |||
2011-06-14 | mount /run without MS_NOEXEC | Kay Sievers | |
2011-06-10 | readahead-common: fix total memory size detection | Michal Schmidt | |
sysinfo returns the total memory size in multiples of mem_unit bytes. As long as the size in bytes fits into unsigned long, the kernel uses mem_unit = 1, but this is not true on i386 with more than 4 GB RAM. https://bugzilla.redhat.com/show_bug.cgi?id=712341 | |||
2011-06-09 | enable chkconfig support in systemctl for openSUSE | Frederic Crozat | |
2011-06-07 | selinux: selinuxfs can be mounted on /sys/fs/selinux | Michal Schmidt | |
The kernel now provides the /sys/fs/selinux mountpoint and libselinux prefers it if it's available. systemd currently tests only for /selinux and this leads to an infinite loop of policy reloads in the latest Rawhide. Fix it by checking both possible mountpoints. Also add the new path to ignore_paths[]. /selinux appears also in nspawn.c. I don't think it's necessary to change it there at this point. https://bugzilla.redhat.com/show_bug.cgi?id=711015 |