summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2011-06-24logind: remove a session when its cgroup is goneLennart Poettering
2011-06-24logind: fix generation of bus arraysLennart Poettering
2011-06-24logind: make sure we hand out write fd, and keep read fd for session end ↵Lennart Poettering
detection
2011-06-24logind: various clean-upsLennart Poettering
2011-06-24logind: hook up PAM module with logindLennart Poettering
2011-06-21logind: make idle hint logic workLennart Poettering
2011-06-21logind: send out PropertyChanged signals where appropriateLennart Poettering
2011-06-21logind: send dbus signals when sessions/users/seats come and goLennart Poettering
2011-06-21logind: implement ListXXX bus methodsLennart Poettering
2011-06-21logind: implement more dbus functionalityLennart Poettering
2011-06-21logind: implement idle hint logicLennart Poettering
2011-06-21dbus: add dbus introspection extractionLennart Poettering
2011-06-21timedated: rename a few things for clarificationLennart Poettering
2011-06-21timedated: sync clock down to RTC where necessaryLennart Poettering
2011-06-21mechanisms: add mechanisms to change system locale and clockLennart Poettering
2011-06-21util: make a couple of files we write atomicLennart Poettering
2011-06-21service: check whether sysv scripts where changedLennart Poettering
2011-06-21dbus: introduce UnsetAndSetEnvironment()Lennart Poettering
2011-06-21util: return errno in close_nointr()Lennart Poettering
2011-06-21logind: implement D-Bus propertiesLennart Poettering
2011-06-21dbus: add api for append gid/uid propertiesLennart Poettering
2011-06-21udev: simplify udev rules a bitLennart Poettering
2011-06-21logind: unlink state files when stoppingLennart Poettering
2011-06-21logind: implement GCLennart Poettering
2011-06-21util: add fopen_temporary()Lennart Poettering
2011-06-21logind: implement ACL managementLennart Poettering
2011-06-21logind: split up logind.hLennart Poettering
2011-06-21logind: first version that compiles fineLennart Poettering
2011-06-21util: move string enum mapping to the endLennart Poettering
2011-06-21util: add pipe_eof()Lennart Poettering
2011-06-21english: s/_per_/_by_/Lennart Poettering
2011-06-21util: introduce dirent_is_file()Lennart Poettering
2011-06-21hostnamed: split dbus initialization into a separate functionLennart Poettering
2011-06-21dbus: make bus_flags_to_events() and friends generally usefulLennart Poettering
2011-06-20manager: include full systemctl status command line in error messageLennart Poettering
2011-06-20systemctl: Add SYSTEMD_PAGER for setting the pager to use in systemctlVille Skyttä
2011-06-20bash: Add host, privileged, and no-pager bash option completions.Ville Skyttä
2011-06-20sd-daemon: Add sd_is_special for special file descriptorsWilliam 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-20main: Fix a typo emergency shall->emergency shellMichal Vyskocil
2011-06-15pam-module: add debug= parameterMichal 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-15systemctl: plug a leak upon create_symlink mismatchJim Meyering
2011-06-15systemctl: enable chkconfig support in systemctl for ALTLinuxAlexey Shabalin
2011-06-15execute: fix function prototypeLennart Poettering
2011-06-15dbus: fix name of capability propertyLennart Poettering
2011-06-14systemctl: fix a FILE* leakMichal Schmidt
In practice it does not really matter, but let's be nice and close the file.
2011-06-14systemctl: fix 'is-enabled' for native units under /libMichal 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-14mount /run without MS_NOEXECKay Sievers
2011-06-10readahead-common: fix total memory size detectionMichal 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-09enable chkconfig support in systemctl for openSUSEFrederic Crozat
2011-06-07selinux: selinuxfs can be mounted on /sys/fs/selinuxMichal 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