summaryrefslogtreecommitdiff
path: root/Makefile.am
AgeCommit message (Collapse)Author
2011-08-20exec: optionally apply cgroup attributes to the cgroups we createLennart Poettering
2011-08-03bump releasesystemd/v33Lennart Poettering
2011-08-02nspawn: add new --no-net switch to turn off networking in the containerLennart Poettering
2011-08-02build-sys: Add --disable-hostnamed configure switchMiklos Vajna
2011-08-01build-sys: make distcheck workLennart Poettering
2011-08-01load-fragment: speed up parsing by using a perfect hash table with ↵Lennart Poettering
configuration settings built by gperf
2011-07-29build-sys: prepare new releaseLennart Poettering
2011-07-28Link against -lcap only where requiredMichael Biebl
Don't put -lcap into LIBS as otherwise everything will be linked against it, like libsystemd-daemon, where this is not desired.
2011-07-27build-sys: move libsystemd-login to /lib, toosystemd/v31Lennart Poettering
2011-07-27build-sys: fix make distcheckLennart Poettering
2011-07-26pkgconfig: move library .pc files to libdirLennart Poettering
2011-07-25sysctl: apply network specific sysctls to each network card as they appearLennart Poettering
2011-07-25systemctl: hook up new install logicLennart Poettering
This adds a number of new options to systemctl, for presets, reenabling, masking/unmask, and runtime operations.
2011-07-23bus: expose installer functionsLennart Poettering
2011-07-22install: add new installer implementationLennart Poettering
This new installer will replace the current code of "systemctl enable" but also be available via D-Bus. It adds a couple of new features: - Mask/Unmask calls - Reenable call - Preset call - Support for enabling units temporarily (i.e. in /run/systemd instead of /etc/systemd) - Enumeration of installed units - Support for out-of-search-path units systemctl and D-Bus are not hooked up with this yet
2011-07-15distribute: src/libsystemd-*.symKay Sievers
2011-07-15libsystemd-daemon: support installation in --with-rootlibdirKay Sievers
2011-07-14libs: add symbol versioning for the benefit of RPMLennart Poettering
2011-07-14sd-daemon: turn sd-daemon.c into a shared libraryLennart Poettering
2011-07-14logind: introduce libsystemd-login.so as fast path to access logind dataLennart Poettering
2011-07-13man: add man page for systemd-loginctlLennart Poettering
2011-07-12build-sys: fix copynpaste mistakeLennart Poettering
2011-07-12build-sys: fix make distcheckLennart Poettering
2011-07-12build-sys: add a number of missing header files to EXTRA_DISTLennart Poettering
2011-07-12units: add units for boot.local/halt.local on SUSE distributions.Frederic Crozat
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-11build-sys: Add i18n support through intltoolBastien Nocera
And put the PolicyKit policy files up for translation.
2011-07-08loginctl: add various introspection functionsLennart 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-06-30logind: add service for per-user shared systemd daemonLennart Poettering
2011-06-30manager: use sd_notify() to notify parent systemd that we have finished startupLennart Poettering
2011-06-29logind: hook uaccess into udev by defaultLennart Poettering
2011-06-29logind: add man page for configuration fileLennart Poettering
2011-06-29logind: parse configuration fileLennart Poettering
2011-06-28logind: implement basic version of AttachDevice() D-Bus callLennart Poettering
2011-06-28logind: activate autovt@.service instead of autovt-getty@.service when the ↵Lennart Poettering
user switches to a previously unused tty, since it doesn't have to be a getty we start on it on demand
2011-06-28logind: implement SetUserLinger() D-Bus callLennart Poettering
2011-06-28logind: autospawn gettys when necessaryLennart Poettering
2011-06-24logind: hook up PAM module with logindLennart Poettering
2011-06-21dbus: add dbus introspection extractionLennart Poettering
2011-06-21mechanisms: add mechanisms to change system locale and clockLennart Poettering
2011-06-21logind: implement D-Bus propertiesLennart Poettering
2011-06-21logind: implement ACL managementLennart Poettering
2011-06-21logind: first version that compiles fineLennart Poettering
2011-06-15build-sys: local-fs, remote-fs and swap are active anyway when user sessions ↵Lennart Poettering
are created, there is no point in having these units known in sessions
2011-06-14build-sys: fix buildLennart Poettering
2011-05-25drop hwclock-save.serviceKay Sievers
We don't want to fiddle around changing the RTC, not on bootup, not on shutdown. If we don't run NTP, we have absolutely no clue what's the current time to store in the RTC. If we run NTP, the kernel syncs the system time every 11 minutes to the RTC. Especially in multi-boot environents we must not call hwclock(8) which tries to be smart with calculating/storing/applying drifts and such. Live-CDs must never touch the RTC, because we don't know if it is running in UTC or locatime.
2011-05-24rtc in localtime: use settimeofday(NULL, tz) instead of hwclock(8)Kay Sievers
We check for LOCAL in /etc/adjtime and if needed, ask the kernel to apply the timezone delta to the system clock. The very first call of settimeofday() without a time, but a timezone warps the system clock, so that it properly runs in UTC.
2011-05-10build-sys: create dbussystemservicedirMichael Olbrich
otherwise building fails if it doesn't exist: ( cd <DESTDIR>/usr/share/dbus-1/services && \ rm -f org.freedesktop.systemd1.service && \ ln -s ../system-services/org.freedesktop.systemd1.service org.freedesktop.systemd1.service ) /bin/sh: line 0: cd: <DESTDIR>/usr/share/dbus-1/services: No such file or directory