Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-02-15 | cleanup TODO | Lennart Poettering | |
2011-02-15 | mount,swap: properly add dependencies to logger if needed | Lennart Poettering | |
2011-02-15 | service: change default std output to inherit | Lennart Poettering | |
2011-02-15 | exec: introduce global defaults for the standard output of services | Lennart Poettering | |
2011-02-15 | udev: use SYSTEMD_READY to mask uninitialized DM devices | Lennart Poettering | |
2011-02-15 | fsck: output to /dev/console by default in addition to syslog | Lennart Poettering | |
2011-02-15 | execute: optionally forward program output to /dev/console in addition to ↵ | Lennart Poettering | |
syslog/kmsg | |||
2011-02-15 | socket: refuse socket activation for SysV services | Lennart Poettering | |
Make sure that when a .socket unit is installed without its matching .service we don't end up activating a legacy SysV/LSB service with the same name. SysV/LSB style services do not support passing sockets and we don't want to extend SysV/LSB to ensure we don't break compatibility with other systems. | |||
2011-02-15 | fsck: do not fail boot if fsck returns with an error code that hasn't 2 or 6 set | Lennart Poettering | |
2011-02-15 | shutdown: execute all binaries in /lib/systemd/system-shutdown as last step ↵ | Lennart Poettering | |
before invoking reboot() | |||
2011-02-14 | job: make status message printing more verbose | Lennart Poettering | |
2011-02-14 | cryptsetup: fix unit file description | Lennart Poettering | |
2011-02-14 | tmpfiles: never delete AF_UNIX sockets that are alive | Lennart Poettering | |
2011-02-14 | getty: don't parse console= anymore, use /sys/class/tty/console/active instead | Lennart Poettering | |
2011-02-14 | util: properly resolve /dev/console if more than once console= argument was ↵ | Lennart Poettering | |
passed on the kernel command line | |||
2011-02-14 | getty: do not auto-spawn getty's on VC ttys if console=ttyN is used | Lennart Poettering | |
https://bugzilla.redhat.com/show_bug.cgi?id=676885 | |||
2011-02-14 | fsck: skip root fsck if dracut already did it | Lennart Poettering | |
2011-02-13 | update TODO | Lennart Poettering | |
2011-02-13 | util: when determining the right TERM for /dev/console consult ↵ | Lennart Poettering | |
/sys/class/tty/console/active | |||
2011-02-13 | service: when guessing the main PID don't consider processes that aren't our ↵ | Lennart Poettering | |
children | |||
2011-02-13 | service: make main pid guessing optional, and reread pid file after reloads | Lennart Poettering | |
2011-02-13 | pam: introduce whitelist and blacklist user list feature | Lennart Poettering | |
This is useful to exclude root from the session logout killings or to limit killing to the selinux guest users. | |||
2011-02-13 | systemctl: minor optimizations | Lennart Poettering | |
2011-02-13 | systemctl: don't unnecessarily close stdin/stdout/stderr for tty agent so ↵ | Lennart Poettering | |
that locking by tty works | |||
2011-02-13 | readahead: disable readahead in virtual machines | Lennart Poettering | |
2011-02-13 | tmpfiles: simplify default tmpfiles configuration by using globs | Lennart Poettering | |
2011-02-13 | systemd: document systemd-tmpfiles | Lennart Poettering | |
2011-02-13 | tmpfiles: move binary to /bin to make it publicly available | Lennart Poettering | |
2011-02-13 | tmpfiles: take names of tmpfiles configuration files on the command line | Lennart Poettering | |
2011-02-12 | tmpfiles: log to stderr if possible | Lennart Poettering | |
2011-02-12 | tmpfiles: support globs | Lennart Poettering | |
2011-02-09 | update TODO | Lennart Poettering | |
2011-02-09 | units: introduce and hook up sound.target | Lennart Poettering | |
2011-02-09 | dbus: allow all clients access to org.freedesktop.DBus.Peer | Lennart Poettering | |
2011-02-09 | man: document SYSTEMD_READY= | Lennart Poettering | |
2011-02-09 | device: consider udev devices with SYSTEMD_READY=0 as unplugged | Lennart Poettering | |
2011-02-09 | systemd: show status when run with plymouth, and don't start plymouth a ↵ | Lennart Poettering | |
second time when it is already running | |||
2011-02-09 | manager: if we receive SIGRTMIN+20/21 enable/disable showing of status on ↵ | Lennart Poettering | |
the console | |||
2011-02-09 | man: clarify a few things | Lennart Poettering | |
2011-02-09 | systemctl: fix opening params | Lennart Poettering | |
2011-02-09 | systemctl: don't start agent for --user | Lennart Poettering | |
2011-02-09 | systemctl: make sure the tty agent does not retain a copy of stdio | Lennart Poettering | |
https://bugzilla.redhat.com/show_bug.cgi?id=674916 | |||
2011-02-08 | plymouth: move plymouth out of TARGET_FEDORA | Jeff Mahoney | |
2011-02-08 | locale: unify some code between fedora and altlinux | Lennart Poettering | |
2011-02-08 | build-sys: initial support ALTLinux | Alexey Shabalin | |
Hi all! I added basic support for ALTLinux. Please see patch or http://git.altlinux.org/people/shaba/packages/systemd.git?p=systemd.git;a=shortlog;h=refs/heads/altlinux Thanks. | |||
2011-02-08 | build-sys: make less noise when checking file | Lucas De Marchi | |
There's already a condition that gives a warning if user is cross-compiling an relying on files from the build system. AC_CHECK_FILE macro only tests for file in the build system. Hence use a simple 'test -f' that does the same job, without the warning. | |||
2011-02-08 | update TODO | Lennart Poettering | |
2011-02-08 | build-sys: fix AC_COMPILE_IFELSE tests | Lucas De Marchi | |
This removes some warnings when bootstrapping. The warnings were introduced in autoconf 2.68. Reference: http://www.flameeyes.eu/autotools-mythbuster/forwardporting/autoconf.html The following code AC_COMPILE_IFELSE([ <MY C CODE HERE> ], ...) is changed to AC_COMPILE_IFELSE( [AC_COMPILE_IFELSE([AC_LANG_SOURCE([ <MY C CODE HERE> ])], ...) | |||
2011-02-08 | build-sys: ensure selinux configure check follows logic of other optional ↵ | Lennart Poettering | |
features | |||
2011-02-08 | build-sys: autodetect and use pkg-config for libselinux | Alexey Shabalin | |
Hi! libselinux has a pkg-config file: $ rpm -qf /usr/lib64/pkgconfig/libselinux.pc libselinux-devel-2.0.98-alt1 $ cat /usr/lib64/pkgconfig/libselinux.pc prefix=/usr exec_prefix=${prefix} libdir=${exec_prefix}/lib64 includedir=/usr/include Name: libselinux Description: SELinux utility library Version: 2.0.98 URL: http://userspace.selinuxproject.org/ Libs.private: -lsepol Libs: -lselinux Cflags: Patch for use pkg-config in attach. -- Alexey Shabalin |