Age | Commit message (Collapse) | Author | |
---|---|---|---|
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-01-22 | gcc: make gcc shut up | Lennart Poettering | |
2011-01-20 | systemctl: highlight failed processes in systemctl status | Lennart Poettering | |
2011-01-18 | mount: FAT uuids are uppercase | Lennart Poettering | |
2011-01-06 | execute,util: fix two small memory leaks | Lennart Poettering | |
2011-01-05 | util: don't pass invalid fd to fdopendir() on error to avoid corruption of errno | Lennart Poettering | |
2011-01-05 | fragment: properly handle quotes in assignments in EnvironmentFile= files | Lennart Poettering | |
2011-01-04 | serial: use TERM=vt100 instead of TERM=vt100-nav | Lennart Poettering | |
TERM=vt100-nav was necessary for compat with some ppc hvc devices, a long time ago. Unfortunately vt100-nav terminfo is not installed by default on most distros, hence change the default to v100 which is available universally and still should be a relatively safe and conservative default. Should it turn out that vt100 is not really the best choice we can revert this change again and then ask distros to move vt100-nav into their default install. | |||
2011-01-01 | arch: remove welcome message | Tom Gundersen | |
This is now done by os-release downstream. | |||
2011-01-01 | util: invoke sync() implicitly on freeze() | Lennart Poettering | |
Suggested by Tom Gundersen. | |||
2010-12-28 | tmpfiles: ensure we do no follow symlinks when cleaning up dirs | Lennart Poettering | |
Patch suggested by Miloslav Trmac. | |||
2010-12-21 | util: properly handle OOM when allocating Debian version string | Lennart Poettering | |
2010-12-21 | debian: Prefix welcome string with "Debian " | Michael Biebl | |
For stable releases /etc/debian_version only contains a version number, so we add a prefix "Debian ". | |||
2010-11-18 | sysctl: implement native sysctl tool to support Debian-style /etc/sysctl.d | Lennart Poettering | |
2010-11-18 | util: introduce /etc/os-release so that distros don't need to patch systemd ↵ | Lennart Poettering | |
to get a welcome message | |||
2010-11-15 | exec: automatically determine right TERM= setting based on tty name | Lennart Poettering | |
2010-11-14 | util: always highlight distro name | Lennart Poettering | |
2010-11-12 | cryptsetup: hook up tool with ask-password | Lennart Poettering | |
2010-11-10 | manager: parse RD_TIMESTAMP passed from initrd | Lennart Poettering | |
2010-11-10 | cryptsetup: minimal cryptsetup unit generator | Lennart Poettering | |
2010-10-28 | service: unify tstamp serialization code | Lennart Poettering | |
2010-10-27 | main: move make_null_stdio() to util.c | Lennart Poettering | |
2010-10-27 | unit: serialize active timestamps | Lennart Poettering | |
2010-10-26 | ask-password: add minimal plymouth password agent | Lennart Poettering | |
2010-10-25 | util: Add welcome message for Ubuntu | Andrew Edmunds | |
The approved method for determining the installed release of Ubuntu is to execute "lsb_release". However, this is in /usr/bin and is implemented in python so it is not safe to execute at this early stage of booting. This code parses /etc/lsb-release which is where "lsb_release" looks for the information. | |||
2010-10-25 | ask-password: add basic tty agent | Lennart Poettering | |
2010-10-22 | systemctl: introduce systemctl kill | Lennart Poettering | |
2010-10-18 | util: ignore quota files by default | Lennart Poettering | |
2010-10-18 | tmpfiles: integrate kay's directory cleanup code and otherwise beef up ↵ | Lennart Poettering | |
tmpfiles quite a bit | |||
2010-10-13 | inotify: properly handle multiple inotify events per read() | Lennart Poettering | |
2010-10-08 | util: don't specifically check for the /dev/null major/minor, just check ↵ | Lennart Poettering | |
whether something is a char or block device | |||
2010-10-08 | unit: introduce 'banned' load state for units symlinked to /dev/null | Lennart Poettering | |
2010-10-07 | util: unify implementations of freeze() | Lennart Poettering | |
2010-10-05 | fix typo: s/seperat/separat/g | Dave Reisner | |
2010-09-28 | parse_env_file() - return empty value strings like FOO="" as NULL value | Kay Sievers | |
2010-09-21 | locale: make sure we don't merge configuration settings from different sources | Lennart Poettering | |
2010-09-17 | ask-password: optionally ask questions on tty | Lennart Poettering | |
2010-09-16 | util: fix handling of quotes in parse_env_file() | Lennart Poettering | |
2010-09-16 | vconsole: add new utility to initialize the virtual console | Lennart Poettering | |
2010-09-15 | util: use waitid() instead of waitpid() everywhere to avoid confusion due to ↵ | Lennart Poettering | |
SIGSTOP | |||
2010-09-15 | util: introduce waitpid_loop() | Lennart Poettering | |
2010-09-14 | util: SIGSTKFLT is unknown on Linux for SPARC | Lennart Poettering | |
2010-09-13 | util: add Arch welcome message | Tom Gundersen | |
Arch has no release name, so juts prints 'Welcome to Arch Linux!'. The color is the same as used by Arch's native rc.sysinit. | |||
2010-09-13 | util: add Debian welcome message | Sedat Dilek | |
Hi, after talked with Michael on IRC, here is the patch to see a systemd Welcome message on Debian systems. FYI: I had to remove "quiet" from Kernel-command-line to see it. "Stolen from Gentoo" :-) [1,2]? Kind Regards, - Sedat - [1] http://lists.freedesktop.org/archives/systemd-devel/2010-September/000267.html [2] http://cgit.freedesktop.org/systemd/commit/?id=0d37b36b2890fdf8149d12460ebb00822e555977 From 76d860ca774cb8724de25c3ed3c455ebe5d548e3 Mon Sep 17 00:00:00 2001 From: Sedat Dilek <sedat.dilek@gmail.com> Date: Sun, 12 Sep 2010 23:02:22 +0200 Subject: [PATCH] util: add Debian welcome message Include the "Debian" string as /etc/debian_version contains only the Distribution name like "squeeze". Use Light Red color for Debian. Based on a proposal patch of Michael Biebl <biebl@debian.org> | |||
2010-09-09 | util: add Gentoo welcome message. | Gustavo Sverzut Barbieri | |
2010-09-01 | util: leave locked terminal attributes untouched so that we don't interfere ↵ | Lennart Poettering | |
with plymouth https://bugzilla.redhat.com/show_bug.cgi?id=628913 | |||
2010-08-31 | util: look at STDOUT, not STDIN, when determining tty columns | Lennart Poettering | |
https://bugzilla.redhat.com/show_bug.cgi?id=626891 | |||
2010-08-25 | systemctl: show timestamps for state changes | Lennart Poettering | |
2010-08-20 | mount: properly handle LABEL="" in fstab | Lennart Poettering | |
2010-08-20 | service/systemctl: don't consider LSB exit codes 5 and 6 as failure, and ↵ | Lennart Poettering | |
decode exit codes in systemctl |